-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
44 lines (44 loc) · 1 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
{
"name": "Vertical-ize CJK lines",
"description": "Make web lines vertical for CJK (Chinese, Japanese, Korean) traditional",
"manifest_version": 2,
"version": "0.4.5",
"homepage_url": "https://garywill.github.io",
"icons": {
"128": "icon.png"
},
"developer": {
"name": "Garywill",
"url": "https://garywill.github.io"
},
"permissions": [
"storage",
"activeTab",
"<all_urls>",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icon.png"
},
"web_accessible_resources": [
"wqy-microhei-rotate90cjk.ttf"
],
"commands": {
"_execute_browser_action": {
}
},
"browser_specific_settings": {
"gecko": {
"id": "{75bc7e46-2d9e-4d11-bdbc-90f783529362}"
}
}
}