-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
50 lines (50 loc) · 1.21 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
{
"author": "Adrien COLOT",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"40": "images/ba.png"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"ftp://*/*",
"file:///*"
],
"js": [
"rikaicontent.js"
],
"all_frames": true
}
],
"description": "A port of rikaikun for edgehtml. Translate Japanese by hovering over words.",
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"manifest_version": 2,
"name": "rikaiedgehtml",
"options_page": "options.html",
"permissions": [
"tabs",
"clipboardWrite",
"storage"
],
"version": "0.10.1",
"web_accessible_resources": [
"css/popup-black.css",
"css/popup-blue.css",
"css/popup-lightblue.css",
"css/popup-yellow.css"
],
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
}
}