-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·35 lines (33 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
{
"name": "התוסף למלחמה בגזענות בפייסבוק",
"description": "התוסף הלא רשמי של משרד המשפטים למלחמה בגזענות בפייסבוק",
"short_name": "התוסף הלא רשמי של משרד המשפטים למלחמה בגזענות בפייסבוק",
"homepage_url": "http://www.twitter.com/omriariav",
"permissions": [
"tabs",
"webNavigation",
"webRequest",
"http://www.facebook.com/*",
"https://www.facebook.com/*"
],
"options_page" : "options.html",
"background": {
"scripts": ["background.js", "jquery-1.11.0.js"],
"presistene": false
},
"content_scripts": [
{
"matches": ["http://www.facebook.com/*",
"https://www.facebook.com/*"],
"css": ["inject.css"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
"options.html",
"injectme.js",
"jquery-1.11.0.js"
],
"version": "1.1",
"manifest_version": 2
}