-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (35 loc) · 977 Bytes
/
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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"content_security_policy":"script-src 'self' https://apis.google.com; object-src 'self'",
"name": "Rikaisan-Universal",
"version": "0.9.5",
"description": "A port of rikaichan with more languages for chrome. Translate the Japanese into several languages by hovering over the words.",
"icons": { "48": "images/icon48.png",
"128": "images/icon128.png"},
"permissions": [
"tabs",
"clipboardWrite"
],
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": "images/ba.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "ftp://*/*", "file:///*"],
"js": ["rikaicontent.js"],
"all_frames":true
}
],
"web_accessible_resources": [
"css/popup-black.css",
"css/popup-blue.css",
"css/popup-lightblue.css",
"css/popup-yellow.css"
]
}