forked from google/chrome-language-immersion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 895 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
{
"manifest_version": 2,
"name": "Language Immersion for Chrome",
"version": "1.0.5",
"description": "Experience a new language while you browse the web.",
"permissions": [
"http://translate.google.com/translate_a/t",
"tabs"
],
"icons": { "16": "img/logos/16.png",
"48": "img/logos/48.png",
"128": "img/logos/128.png" },
"background" : {
"page" : "html/background.html"
},
"browser_action": {
"default_title": "Language Immersion for Chrome",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*"
],
"js" : [
"vendor/jquery/jquery.js",
"js/common_words_5k_ordered.js",
"js/lit.js"
],
"css" : [
"css/page-style.css"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}