-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
59 lines (50 loc) · 1.15 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
51
52
53
54
55
56
57
58
59
{
"manifest_version": 2,
"name": "Dictozo",
"description": "This app lets you save meaning of all the words that you search frequently on google while reading an article for further reference",
"version": "2.0",
"permissions": [
"storage",
"notifications",
"contextMenus",
"tabs",
"identity",
"identity.email",
"http://*/",
"https://*/"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"js/jquery-3.2.1.min.js",
"js/background.js"
],
"persistent": true
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": ["css/content.css"],
"js": [
"js/jquery-3.2.1.min.js",
"js/scan.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"default_popup": "index.html"
}
}