-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·48 lines (41 loc) · 926 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
48
{
"name": "Feedcrunch.IO",
"short_name": "Feedcrunch",
"author": "Jonathan DEKHTIAR",
"manifest_version": 2,
"version": "1.0.14",
"description": "Feedcrunch.IO - Chrome Extension",
"icons": {
"19": "img/icon.png",
"48": "img/iconLauncher.png",
"128": "img/iconStore.png"
},
"background": {
"scripts": [
"app/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "img/icon.png"
},
"content_scripts": [
{
"js": ["app/content_scripts.js"],
"matches": ["http://*/*", "https://*/*"]
}
],
"web_accessible_resources": [
"templates/*.html"
],
"permissions": [
"activeTab",
"contextMenus",
"cookies",
"management",
"storage",
"tabs",
"http://*/*",
"https://*/*"
]
}