Skip to content

Commit

Permalink
Bump version to: 11.1.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Macbeth committed Nov 11, 2024
1 parent 5426c82 commit 8e33295
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 45 deletions.
49 changes: 30 additions & 19 deletions addon/manifest.firefox.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,32 @@
{
"manifest_version": 2,
"name": "Autoconsent",
"version": "2024.11.7",
"background": {
"scripts": ["background.bundle.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content.bundle.js"],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": ["*://*/*", "tabs", "storage", "webNavigation"],
"page_action": {
"browser_style": true,
"default_title": "Autoconsent"
"manifest_version": 2,
"name": "Autoconsent",
"version": "2024.11.11",
"background": {
"scripts": [
"background.bundle.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.bundle.js"
],
"run_at": "document_start",
"all_frames": true
}
}
],
"permissions": [
"*://*/*",
"tabs",
"storage",
"webNavigation"
],
"page_action": {
"browser_style": true,
"default_title": "Autoconsent"
}
}
59 changes: 36 additions & 23 deletions addon/manifest.mv3.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
{
"manifest_version": 3,
"name": "Autoconsent",
"version": "2024.11.7",
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content.bundle.js"],
"run_at": "document_start",
"all_frames": true
}
],
"host_permissions": ["*://*/*"],
"permissions": ["cookies", "tabs", "scripting", "storage", "webNavigation", "browsingData"],
"action": {
"browser_style": true,
"default_title": "Autoconsent",
"default_popup": "popup.html"
},
"devtools_page": "devtools/background.html"
}
"manifest_version": 3,
"name": "Autoconsent",
"version": "2024.11.11",
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.bundle.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"host_permissions": [
"*://*/*"
],
"permissions": [
"cookies",
"tabs",
"scripting",
"storage",
"webNavigation",
"browsingData"
],
"action": {
"browser_style": true,
"default_title": "Autoconsent",
"default_popup": "popup.html"
},
"devtools_page": "devtools/background.html"
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@duckduckgo/autoconsent",
"version": "11.0.0",
"version": "11.1.0",
"description": "",
"exports": {
".": {
Expand Down

0 comments on commit 8e33295

Please sign in to comment.