-
Notifications
You must be signed in to change notification settings - Fork 77
/
manifest.json
54 lines (54 loc) · 1.11 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
{
"manifest_version": 2,
"version": "0.88.2",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"homepage_url": "https://liquality.io",
"permissions": [
"notifications",
"storage",
"activeTab",
"unlimitedStorage",
"tabs"
],
"icons": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png",
"256": "icons/256x256.png",
"512": "icons/512x512.png",
"1024": "icons/1024x1024.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"js/content-script.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/16x16.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png",
"256": "icons/256x256.png",
"512": "icons/512x512.png",
"1024": "icons/1024x1024.png"
}
}
}