-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (30 loc) · 761 Bytes
/
Copy pathmanifest.json
File metadata and controls
36 lines (30 loc) · 761 Bytes
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
{
"name": "Transparent Media",
"description": "Provides information on the media bias rating of news sites you read online and track your media consumption habits overtime.",
"version": "2.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["libraries/DatabaseHelper.js","scripts/googleContentScript.js"],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"unlimitedStorage",
"tabs"
],
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"24": "icons/unknown.png",
"48": "icons/unknown1.png",
"128": "icons/unknown2.png"
},
"options_page": "options/options.html"
}