-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
55 lines (55 loc) · 1.16 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
{
"name": "Warning Goose",
"description": "Warning Goose - Crowdsourced Privacy Alert",
"version": "1.1.4",
"manifest_version": 2,
"author": "Warning Goose",
"homepage_url": "https://warninggoose.net",
"offline_enabled": false,
"short_name": "Warning Goose",
"icons": {
"16": "img/icon-16.png",
"32": "img/icon-32.png",
"48": "img/icon-48.png",
"96": "img/icon-96.png",
"128": "img/icon-128.png"
},
"browser_action": {
"default_icon": {
"16": "img/icon-16.png",
"32": "img/icon-32.png",
"48": "img/icon-48.png",
"96": "img/icon-96.png",
"128": "img/icon-128.png"
},
"default_popup": "popup/index.html",
"default_title": "Warning Goose"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"build/js/jquery-3.4.1.min.js",
"build/js/app.js"
],
"run_at": "document_start",
"css": [
"build/css/style.css"
]
}
],
"background": {
"scripts": [
"build/js/background.js"
]
},
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": [
"public/*"
]
}