forked from kylepaulsen/ResourceOverride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
30 lines (30 loc) · 867 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
{
"name": "Resource Override",
"version": "1.3.0",
"description": "An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.",
"icons": {
"16": "icons/icon-16x16.png",
"48": "icons/icon-48x48.png",
"128": "icons/icon-128x128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon-16x16.png"
}
},
"devtools_page": "src/ui/devtools.html",
"options_ui": {
"page": "src/ui/devtoolstab.html"
},
"background": {
"page": "src/background/background.html"
},
"content_scripts": [{
"matches" : ["*://*/*"],
"js": ["src/inject/scriptInjector.js"],
"all_frames": true,
"run_at": "document_start"
}],
"permissions": ["storage", "webRequest", "webRequestBlocking", "<all_urls>", "tabs"],
"manifest_version": 2
}