-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
Motivation
This project will stop working in Chrome in 2023 once Manifest v2 support is removed. This error message is currently logged at browser startup time.
Resources
- https://developer.chrome.com/docs/extensions/mv3/intro/mv3-migration/
- https://developer.chrome.com/docs/extensions/mv3/intro/mv3-overview/#service-workers
Changing the host permissions part will be straightforward
"permissions": [
"storage",
"history",
"webRequest",
"webRequestBlocking",
"contextMenus"
],
"host_permissions": ["http://*/*", "https://*/*", "*://localhost/*", "<all_urls>"],
It may be a more involved process to rewrite the entries in background.scripts as service workers.
https://developer.chrome.com/docs/extensions/mv3/migrating_to_service_workers/
Lines 34 to 39 in 156cc98
| "background": { | |
| "scripts": [ | |
| "dist/wildcard-background.js", | |
| "src/wildcard-ajax.js" | |
| ] | |
| }, |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
