forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (32 loc) · 993 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
{
"name": "Violent monkey",
"version" : "2.0.0.6",
"manifest_version" : 2,
"description" : "__MSG_extDescription__",
"developer": {"name" : "Gerald", "url" : "http://gera2ld.blog.163.com"},
"homepage_url":"http://github.com/gera2ld/Violentmonkey/wiki",
"icons" : {
"16":"images/icon16.png",
"48":"images/icon48.png",
"128":"images/icon128.png"
},
"default_locale":"en",
"browser_action" : {
"default_icon":"images/icon19.png",
"default_title":"__MSG_extName__",
"default_popup":"popup.html"
},
"background" : {"page" : "background.html"},
"options_page" : "options.html",
"content_scripts": [{
"js": ["injected.js"],
"matches": ["<all_urls>"],
"include_globs": ["*"],
"exclude_globs": [],
"run_at": "document_start",
"all_frames" : true
}],
"web_accessible_resources" : [],
"permissions" : ["tabs", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'unsafe-eval';"
}