-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
35 lines (34 loc) · 973 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
{
"manifest_version": 2,
"name": "Css3Animation",
"version": "0.1.1",
"description": "generate css animation code for your page",
"icons": {
"16": "static/icon/16.png",
"32": "static/icon/32.png",
"48": "static/icon/48.png",
"128": "static/icon/128.png"
},
"background": {
"scripts": [ "static/background.js" ],
"persistent": false
},
"devtools_page": "static/devtools-background.html",
"content_scripts": [
{
"matches": ["<all_urls>","http://*/*","https://*/*"],
"js": ["static/content-script.js"]
}
],
"default_locale":"zh_CN",
"web_accessible_resources":["static/*/*"],
"permissions": [
"debugger",
"notifications",
"<all_urls>" ,
"tabs",
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:4000; object-src 'self'"
}