-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
31 lines (31 loc) · 945 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"manifest_version": 2,
"name": "Binary endpoint",
"version": "1.1",
"description": "Change API Endpoint of Binary.com",
"author": "Nazanin Reihani Haghighi",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_title": "Binary Endpoint",
"default_popup": "popup.html"
},
"permissions" : [
"declarativeContent", "storage",
"*://*.binary.com/*", "*://*.github.io/binary-static/*", "*://*.binary.sx/*", "tabs",
"*://binary.bot/*", "*://*.binary.me/*", "*://*.deriv.app/*", "*://*.github.io/deriv-app/*", "*://*.deriv.com/*"
],
"content_scripts": [
{
"matches": ["*://*.binary.com/*", "*://*.github.io/binary-static/*", "*://*.binary.sx/*", "*://*.deriv.app/*", "*://*.github.io/deriv-app/*", "*://*.deriv.com/*"],
"js": ["popup.js"]
}
]
}