-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathmanifest.json
43 lines (43 loc) · 965 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
{
"manifest_version": 2,
"name": "artoo",
"description": "The client-side scraping companion.",
"version": "0.3.4",
"permissions": [
"background",
"webRequest",
"webRequestBlocking",
"tabs",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "chrome/icons/icon16.png",
"48": "chrome/icons/icon48.png",
"128": "chrome/icons/icon128.png"
},
"browser_action": {
"default_title": "artoo",
"default_icon": {
"19": "chrome/icons/icon19.png",
"38": "chrome/icons/icon38.png"
}
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["chrome/content.js"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["chrome/background.js"],
"persistent": true
},
"web_accessible_resources": [
"build/artoo.chrome.js",
"chrome/background.js"
],
"content_security_policy": "default-src 'self';",
"minimum_chrome_version": "33"
}