Skip to content

Commit 9e71c0a

Browse files
committed
Added manifest that makes Chrome happy
1 parent fadc625 commit 9e71c0a

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

Extension/manifest.chromium.json

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "Consent-O-Matic",
3+
"description": "Automatic handling of GDPR consent forms",
4+
"author": "CAVI - Aarhus University",
5+
"homepage_url": "https://github.com/cavi-au/Consent-O-Matic",
6+
"version": "1.1.3",
7+
"manifest_version": 3,
8+
"permissions": [
9+
"activeTab",
10+
"tabs",
11+
"storage"
12+
],
13+
"host_permissions": [
14+
"<all_urls>"
15+
],
16+
"action": {
17+
"default_title": "Consent-O-Matic",
18+
"default_popup": "popup.html"
19+
},
20+
"background": {
21+
"service_worker": "service.js"
22+
},
23+
"content_scripts": [
24+
{
25+
"matches": [
26+
"<all_urls>"
27+
],
28+
"js": [
29+
"content.js"
30+
],
31+
"css": [
32+
"content.css"
33+
],
34+
"all_frames": true,
35+
"match_about_blank": true,
36+
"run_at": "document_start"
37+
}
38+
],
39+
"options_ui": {
40+
"page": "options.html",
41+
"open_in_tab": true
42+
},
43+
"icons": {
44+
"48": "icon_48.png",
45+
"96": "icon_96.png"
46+
},
47+
"browser_specific_settings": {
48+
"gecko": {
49+
50+
"strict_min_version": "109.0"
51+
}
52+
}
53+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "consent-o-matic",
3-
"version": "1.1.0",
3+
"version": "1.1.3",
44
"description": "A chrome extension that tries to do the opposite of Consent-O-Matic",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)