-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
47 lines (39 loc) · 883 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"manifest_version": 2,
"name": "Backloader",
"version": "0.2.0",
"description": "A Chrome extension to redirect HTTP requests to other URLs",
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"*://*/*"
],
"background": {
"scripts": ["scripts/defaultFilterList.js", "scripts/background/background.js"],
"css": ["popup.css"]
},
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "pages/popup/popup.html",
"default_title": "Backloader"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"styles/remove_routerware.css"
],
"run_at": "document_start",
"all_frames": true
}
],
"icons": {
"128": "img/icon.png"
},
"options_page": "pages/options/options.html"
}