-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
manifest.json
49 lines (49 loc) · 1.05 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
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "0.5.5",
"default_locale": "en",
"description": "__MSG_appDescription__",
"icons": {
"128": "i/128.png",
"64": "i/64.png",
"38": "i/38.png",
"32": "i/32.png",
"19": "i/19.png",
"16": "i/16.png"
},
"browser_action": {
"default_icon": {
"38": "i/38.png",
"19": "i/19.png"
},
"default_title": "__MSG_appName__",
"default_popup": "popup.html"
},
"author": "Liming Jin, [email protected]",
"background": {
"scripts": [
"j/encoding.js",
"j/background.js",
"j/menu.js"
],
"persistent": true
},
"homepage_url": "https://github.com/jinliming2/Chrome-Charset",
"incognito": "split",
"minimum_chrome_version": "55.0.2872.0",
"offline_enabled": true,
"options_ui": {
"chrome_style": false,
"page": "option.html",
"open_in_tab": false
},
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"contextMenus",
"tabs"
],
"short_name": "__MSG_appShortName__"
}