-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.1 KB
/
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
{
"manifest_version": 2,
"name": "CookieJar",
"version": "2.3.0",
"author": "Kalpaj Agrawalla",
"description": "Removes article-limit restriction and provides access to view unlimited premium and non-premium articles.",
"icons": {
"16": "src/icons/16.png",
"32": "src/icons/32.png",
"48": "src/icons/48.png",
"128": "src/icons/128.png"
},
"browser_action": {
"default_title": "CookieJar",
"default_icon": "src/icons/default.png"
},
"background": {
"scripts": [
"src/scripts/background.js"
],
"persistent": true
},
"content_scripts": [{
"run_at": "document_start",
"all_frames": false,
"matches": [
"<all_urls>"
],
"js": [
"src/scripts/content.js"
]
}],
"minimum_chrome_version": "70",
"permissions": [
"<all_urls>",
"tabs",
"storage",
"cookies",
"contextMenus",
"contentSettings",
"browsingData",
"webRequest",
"webRequestBlocking"
]
}