-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·30 lines (30 loc) · 1.02 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
{
"name": "Unofficial YADVASHEM Facebook Chrome Ext.",
"description": "YADVASHEM Chrome ext lets you lookup profiles lastnames in the holocaust names database of Yad Va Shem museum",
"short_name": "YADVASHEM Facebook Chrome Extension by @omriariav",
"homepage_url": "http://medium.com/@omriariav",
"icons": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"38": "icons/48x48.png",
"128": "icons/128x128.png"
},
"background": {
"scripts": ["js/jquery-2.1.3.js", "js/bg.js"],
"persistent": false
},
"permissions": [
"*://*.facebook.com/*"
],
"content_scripts": [
{
"matches": ["https://www.facebook.com/*"],
"css": ["css/content.css"],
"js": ["js/jquery-2.1.3.js","js/content.js"]
}
],
"options_page": "html/options.html",
"content_security_policy": "script-src 'self' 'unsafe-eval' https://*.facebook.com https://ajax.googleapis.com https://maxcdn.bootstrapcdn.com; object-src 'self'",
"version": "1.0.1",
"manifest_version": 2
}