Version 1.0.1 View in Chrome Web Store
https://clients2.google.com/service/update2/crx |
{ "name": "BMW MyGarage Chrome Trick", "action": { "icons": { "16": "icon16.png", "36": "icon36.png", "128": "icon128.png" }, "default_icon": "icon128.png", "default_title": "BMW MyGarage Chrome Trick" }, "version": "1.0.1", "background": { "service_worker": "background.js" }, "update_url": "https://clients2.google.com/service/update2/crx", "description": "Chrome trick to expose additional vehicle data.", "permissions": [ "scripting" ], "content_scripts": [ { "js": [ "before.js" ], "run_at": "document_start", "matches": [ "https://*/*", "http://*/*" ] }, { "js": [ "after.js" ], "run_at": "document_idle", "matches": [ "https://*/*", "http://*/*" ] } ], "host_permissions": [ "https://*/*", "http://*/*" ], "manifest_version": 3, "web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "options.js" ] } ] }