forked from lingjf/Shanbay-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (42 loc) · 1.03 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "__MSG_application_title__",
"version": "1.13",
"description": "A Shanbay plugin to add new word to Shanbay.com easily for reciting and memory. ",
"manifest_version": 2,
"default_locale": "en",
"permissions": [
"<all_urls>",
"tts",
"tabs",
"clipboardRead",
"clipboardWrite"
],
"background": {
"scripts": [
"lib/jquery.js",
"lib/literal.js",
"preference.js",
"background.js"
]
},
"browser_action": {
"default_icon": "image/shellfish-darkblue-19.png",
"default_title": "Shanbay Plugin",
"default_popup": "popup.html"
},
"options_page": "options.html",
"minimum_chrome_version": "20",
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"all_frames": true,
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"icons": {
"19": "image/shellfish-darkblue-19.png",
"512": "image/shellfish-darkblue-512.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}