Skip to content

Commit

Permalink
Issue #109 - Switch to using Service Worker
Browse files Browse the repository at this point in the history
  • Loading branch information
Manvel committed Dec 31, 2023
1 parent 11981d1 commit aff763a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/manifest/mv3.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"background": {
"scripts": ["js/back.js"],
"persistent": false
"service_worker": ["js/back.js"]
},
"browser_action": {
"default_icon": "logo.png",
Expand All @@ -15,15 +14,19 @@
} ],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
"description": "Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play (MV3)",
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"128": "css/icons/128x128.png",
"16": "css/icons/16x16.png",
"48": "css/icons/48x48.png"
},
"manifest_version": 2,
"manifest_version": 3,
"name": "Chromium browser automation",
"options_page": "options.html",
"permissions": ["cookies", "http://*/*", "https://*/*", "tabs", "storage"],
"permissions": ["cookies", "tabs", "storage", "scripting"],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "9.1.0"
}

0 comments on commit aff763a

Please sign in to comment.