-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
45 lines (45 loc) · 1.06 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
{
"name": "Pelican Facebook",
"version": "1.4.0",
"manifest_version": 2,
"description": "Minimal and Focused versison of Facebook!",
"icons": {
"16": "icons/logopelican16.png",
"32": "icons/logopelican32.png",
"48": "icons/logopelican48.png",
"128": "icons/logopelican128.png"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"scripts": [
"assets/js/jquery.js",
"background.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons/logopelican16.png",
"32": "icons/logopelican32.png",
"48": "icons/logopelican48.png",
"128": "icons/logopelican128.png"
},
"default_title": "Pelican Facebook",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://www.facebook.com/*"
],
"js": [
"style_facebook.js",
"js/jquery.min.js",
"js/on-off-switch.js",
"js/on-off-switch-onload.js"
]
}
]
}