-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (39 loc) · 1.18 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
{
"name": "Arkangel",
"version": "1.0",
"description": "Image abstraction using flow-based filtering.",
"permissions": ["tabs","activeTab","declarativeContent","storage","contextMenus","http://*/*","https://*/*"],
"background": {
"scripts": ["js/jquery.js", "js/jquery.color.js", "js/shaderProperties.js", "js/webgl.js", "background.js"],
"persistent": false
},
"page_action": {
"default_popup": "login.html",
"default_icon": {
"16": "images/icon/get_started16.png",
"32": "images/icon/get_started32.png",
"48": "images/icon/get_started48.png",
"128": "images/icon/get_started128.png"
}
},
"content_scripts": [ {
"css": ["basic.css"],
"js": [ "contentScript.js" ],
"matches": [ "http://*/*", "https://*/*"],
"run_at": "document_start"
}],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"16": "images/icon/get_started16.png",
"32": "images/icon/get_started32.png",
"48": "images/icon/get_started48.png",
"128": "images/icon/get_started128.png"
},
"web_accessible_resources": [
"shader/*.glsl"
],
"manifest_version": 2
}