-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 968 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
{
"name": "colourSpy",
"version": "0.1.4",
"manifest_version": 2,
"description": "Easily view CSS colours used on a website.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": ["src/bg/background.js"],
"persistent": false
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/jquery/jquery.js", "js/color/color-0.7.1.min.js", "content.js"]
}],
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "colourSpy",
"default_popup": "src/browser_action/browser_action.html"
},
"web_accessible_resources": [
"js/jquery/jquery.js",
"js/jquery/jquery.min.js",
"js/jquery/jquery.min.map.js",
"css/font-awesome.min.css",
"js/underscore/underscore-min.js"
],
"permissions": [
"clipboardWrite",
"contextMenus",
"tabs",
"*://*/*"
]
}