forked from ThoughtfulWalrus/graffiome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (40 loc) · 1.04 KB
/
manifest.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "graffio.me",
"version": "0.0.8",
"manifest_version": 2,
"description": "deface the web",
"homepage_url": "http://graffio.me",
"content_security_policy": "script-src 'self' https://*.firebaseio.com; object-src 'self'",
"permissions": [
"tabs",
"activeTab",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "static/graffiome_logo_16.png",
"48": "static/graffiome_logo_48.png",
"128": "static/graffiome_logo_128.png"
},
"background": {
"page": "src/background/background.html",
"persistent": true
},
"web_accessible_resources": ["static/nyan.gif"],
"browser_action": {
"default_icon": "static/graffiome_logo_19.png",
"default_title": "graffio.me",
"default_popup": "src/app/index.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"bower_components/jquery/dist/jquery.js",
"bower_components/firebase/firebase.js",
"bower_components/CryptoJS/rollups/sha1.js",
"src/content-scripts/canvas.js"
]
}
]
}