Hello, the extension stopped working due to the Chrome manifest update from V2 to V3. Here is the new manifest code:
{ "manifest_version": 3, "name": "GHunt Companion", "version": "2.0.0", "description": "Load all needed cookies to use GHunt peacefully.", "icons": { "48": "assets/ghunt_square.png" }, "permissions": [ "storage", "cookies", "declarativeNetRequest", "declarativeNetRequestFeedback" ], "host_permissions": [ "*://*.google.com/*" ], "content_scripts": [ { "js": ["lib/browser-polyfill.min.js"], "matches": ["*://*.google.com/*"] } ], "background": { "service_worker": "background/background.js" }, "web_accessible_resources": [ { "resources": ["popup/interface.html"], "matches": ["*://*.google.com/*"] } ], "action": { "default_icon": "assets/ghunt_square.png", "default_title": "GHunt Companion", "default_popup": "popup/interface.html" } }
Hello, the extension stopped working due to the Chrome manifest update from V2 to V3. Here is the new manifest code:
{ "manifest_version": 3, "name": "GHunt Companion", "version": "2.0.0", "description": "Load all needed cookies to use GHunt peacefully.", "icons": { "48": "assets/ghunt_square.png" }, "permissions": [ "storage", "cookies", "declarativeNetRequest", "declarativeNetRequestFeedback" ], "host_permissions": [ "*://*.google.com/*" ], "content_scripts": [ { "js": ["lib/browser-polyfill.min.js"], "matches": ["*://*.google.com/*"] } ], "background": { "service_worker": "background/background.js" }, "web_accessible_resources": [ { "resources": ["popup/interface.html"], "matches": ["*://*.google.com/*"] } ], "action": { "default_icon": "assets/ghunt_square.png", "default_title": "GHunt Companion", "default_popup": "popup/interface.html" } }