-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
49 lines (49 loc) · 986 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
46
47
48
49
{
"name": " 3 Words : Awesome language learning app",
"version": "0.2.5",
"manifest_version": 2,
"homepage_url": "http://trustsourcing.com",
"icons": {
"16": "Dist/imgs/icons/icon16.png",
"48": "Dist/imgs/icons/icon48.png",
"128": "Dist/imgs/icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"Dist/scripts/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "Dist/imgs/icons/icon48.png",
"default_title": "3 Words: language learning app",
"default_popup": "Dist/browser.html"
},
"permissions": [
"contentSettings",
"contextMenus",
"cookies",
"notifications",
"tabs",
"geolocation"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"Dist/styles/style.css"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"Dist/scripts/inject.js"
]
}
]
}