-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
45 lines (44 loc) · 879 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
{
"name": "Take Back Facebook™",
"short_name": "TBF",
"developer": {
"name": "Samuel Maynard",
"url": "https://samm81.github.io"
},
"version": "0.0.3",
"description": "Reclaim Facebook™ as a tool - not an addiction",
"homepage_url": "https://github.com/samm81/take-back-facebook",
"permissions": [
"*://*.facebook.com/*",
"storage"
],
"background": {
"scripts": [ "background.js" ],
"persistent": false
},
"content_scripts": [
{
"matches": [ "*://*.facebook.com/*" ],
"css": ["tbf.css"],
"js": ["tbf.js"]
}
],
"web_accessible_resources": [
"fb_gray.ico",
"gray.css",
"graybadges.css",
"likebutton.css",
"likes.css",
"remove.css",
"popups.css"
],
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg",
"128": "icon.svg"
},
"options_page": "options.html",
"manifest_version": 2
}