forked from A9T9/Copyfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
64 lines (64 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"version": "0.8.8.8",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"38": "images/icon-38.png",
"128": "images/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/jquery.min.js",
"scripts/chromereload.js",
"scripts/background.js"
]
},
"options_page": "options.html",
"web_accessible_resources": [
"dialog.html",
"config/config.json",
"images/gear.png",
"images/close.png"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"styles/material.min.css",
"styles/cs.css"
],
"js": [
"scripts/jquery.min.js",
"scripts/material.min.js",
"scripts/overlay.js",
"scripts/cs.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "__MSG_appName__"
},
"permissions": [
"contextMenus",
"tabs",
"activeTab",
"storage",
"http://*/*",
"https://*/*",
"clipboardWrite"
],
"optional_permissions": [
"desktopCapture"
]
}