forked from jasonthewhale/Capybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (37 loc) · 803 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
{
"manifest_version": 3,
"name": "Dark design detector",
"version": "1.0",
"description": "Detects dark design in shopping website.",
"icons": {
"16": "images/16-capy.png",
"32": "images/32-capy.png",
"48": "images/48-capy.png",
"128": "images/128-capy.png",
"512": "images/512-capy.png"
},
"permissions": [
"activeTab",
"<all_urls>",
"storage",
"downloads",
"scripting",
"tabs",
"webRequest",
"webNavigation"
],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js", "popup.js"],
"css": ["content.css"]
}
],
"background": {
"service_worker": "background.js",
"persistence": true
}
}