-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
59 lines (55 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
//manifest spec: http://developer.chrome.com/extensions/manifest.html
//required
"name": "OffensiveBlock",
"version": "1.0",
"manifest_version": 2,
"content_scripts": [
{
"matches": ["http://www.facebook.com/*", "https://www.facebook.com/*"],
"css": ["css/popup.css"],
"js": ["/js/global.js","/js/jquery-1.9.1.min.js", "/js/popup.js"]
}],
//recommended
"description": "Your Profanity Conscience",
"icons": {
"19": "images/facebook-icon--social-media-beakers-iconset--iconshock-30.png",
"38": "images/facebook-icon--social-media-beakers-iconset--iconshock-30.png",
"128": "images/facebook-icon--social-media-beakers-iconset--iconshock-30.png"
},
//required
"browser_action": {
"default_title": "browser_action: default_title",
"default_icon": {
"19": "images/facebook-icon--social-media-beakers-iconset--iconshock-30.png",
"38": "images/facebook-icon--social-media-beakers-iconset--iconshock-30.png"
},
"default_popup": "html/main.html"
},
"permissions": [
"tabs",
"bookmarks",
"https://*.facebook.com/*",
"http://*.facebook.com/*",
"unlimitedStorage",
"alarms",
"browsingData",
"clipboardRead",
"clipboardWrite",
"contentSettings",
"debugger",
"cookies",
"nativeMessaging",
"notifications",
"pageCapture",
"privacy",
"proxy",
"sessions",
"tabCapture",
"webNavigation",
"webRequest"
],
//additional
"options_page": "html/options.html",
"homepage_url": "http://www.facebook.com/"
}