Skip to content

Commit

Permalink
Release 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FMaz008 committed Oct 10, 2024
1 parent 9a3f48c commit 7ccb2f7
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 14 deletions.
26 changes: 21 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"manifest_version": 3,
"name": "Amazon Vine Helper",
"description": "Improve the Amazon Vine experience.",
"version": "2.9.14",
"permissions": ["alarms", "storage", "tabs", "notifications", "scripting", "debugger"],
"version": "2.10.0",
"permissions": [
"alarms",
"storage",
"tabs",
"notifications",
"scripting",
"debugger"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' https://api.vinehelper.ovh http://127.0.0.1:3000 ws://127.0.0.1:3000 wss://api.vinehelper.ovh https://*.media-amazon.com https://api.llamastories.com; img-src 'self' https://*.media-amazon.com https://*.paypal.com https://*.paypalobjects.com;"
},
Expand Down Expand Up @@ -67,7 +74,10 @@
"background": {
"service_worker": "scripts/vh_service_worker.js",
"type": "module",
"scripts": ["node_modules/socket.io/client-dist/socket.io.min.js", "scripts/vh_service_worker.js"]
"scripts": [
"node_modules/socket.io/client-dist/socket.io.min.js",
"scripts/vh_service_worker.js"
]
},
"content_scripts": [
{
Expand Down Expand Up @@ -127,8 +137,14 @@
"run_at": "document_start"
},
{
"css": ["resource/css/vinehelper.css", "resource/css/main.css"],
"js": ["scripts/Template.js", "scripts/review.js"],
"css": [
"resource/css/vinehelper.css",
"resource/css/main.css"
],
"js": [
"scripts/Template.js",
"scripts/review.js"
],
"matches": [
"*://*.amazon.ca/review/*",
"*://*.amazon.it/review/*",
Expand Down
19 changes: 15 additions & 4 deletions manifest_chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
"manifest_version": 3,
"name": "Amazon Vine Helper",
"description": "Improve the Amazon Vine experience.",
"version": "2.9.14",
"permissions": ["alarms", "storage", "tabs", "notifications"],
"version": "2.10.0",
"permissions": [
"alarms",
"storage",
"tabs",
"notifications"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' https://api.vinehelper.ovh wss://api.vinehelper.ovh https://*.media-amazon.com https://api.llamastories.com; img-src 'self' https://*.media-amazon.com https://*.paypal.com https://*.paypalobjects.com;"
},
Expand Down Expand Up @@ -117,8 +122,14 @@
"run_at": "document_start"
},
{
"css": ["resource/css/vinehelper.css", "resource/css/main.css"],
"js": ["scripts/Template.js", "scripts/review.js"],
"css": [
"resource/css/vinehelper.css",
"resource/css/main.css"
],
"js": [
"scripts/Template.js",
"scripts/review.js"
],
"matches": [
"*://*.amazon.ca/review/*",
"*://*.amazon.it/review/*",
Expand Down
19 changes: 15 additions & 4 deletions manifest_firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
"manifest_version": 3,
"name": "Amazon Vine Helper",
"description": "Improve the Amazon Vine experience.",
"version": "2.9.14",
"permissions": ["alarms", "storage", "tabs", "notifications"],
"version": "2.10.0",
"permissions": [
"alarms",
"storage",
"tabs",
"notifications"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' https://api.vinehelper.ovh wss://api.vinehelper.ovh https://*.media-amazon.com https://api.llamastories.com; img-src 'self' https://*.media-amazon.com https://*.paypal.com https://*.paypalobjects.com;"
},
Expand Down Expand Up @@ -127,8 +132,14 @@
"run_at": "document_start"
},
{
"css": ["resource/css/vinehelper.css", "resource/css/main.css"],
"js": ["scripts/Template.js", "scripts/review.js"],
"css": [
"resource/css/vinehelper.css",
"resource/css/main.css"
],
"js": [
"scripts/Template.js",
"scripts/review.js"
],
"matches": [
"*://*.amazon.ca/review/*",
"*://*.amazon.it/review/*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vinehelper",
"version": "2.9.14",
"version": "2.10.0",
"description": "Improve the Amazon Vine experience.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down

0 comments on commit 7ccb2f7

Please sign in to comment.