-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
38 lines (36 loc) · 1.51 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
{
"name": "Openturk",
"description": "The Definitive Toolbox for Amazon Mechanical Turk",
"version": "0.5.1",
"permissions": [ "*://*.mturk.com/*", "*://*.openturk.com/*", "*://*.amazon.com/*", "storage","unlimitedStorage", "contextMenus", "alarms", "tabs"],
"manifest_version": 2,
"background": {
"persistent": true,
"page": "background.html"
},
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "OpenTurk",
"default_popup": "pages/popup.html"
},
"content_scripts": [ {
"js": ["pages/scripts/jquery-2.0.3.min.js", "js/mturk.js"],
"matches": [ "http://*.mturk.com/*", "https://*.mturk.com/*" ],
"css": [ "pages/styles/content.css"],
"run_at": "document_end"
},
{
"all_frames": true,
"js": [ "pages/scripts/jquery-2.0.3.min.js", "js/paste.js" ],
"matches": [ "\u003Call_urls>" ],
"run_at": "document_end"
}],
"options_page":"pages/options.html",
"icons": {
"128": "icons/icon128.png",
"16": "icons/icon16.png",
"48": "icons/icon48.png"
},
"web_accessible_resources": ["pages/scripts/jquery-2.0.3.min.map","pages/styles/font-awesome/css/font-awesome.min.css","pages/styles/font-awesome/fonts/fontawesome-webfont.eot", "pages/styles/font-awesome/fonts/fontawesome-webfont.svg", "pages/styles/font-awesome/fonts/fontawesome-webfont.ttf", "pages/styles/font-awesome/fonts/fontawesome-webfont.woff"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}