Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Content Tracker", "version": "1.0", "permissions": [ "tabs", "notifications", "scripting" ], "description": "Ensure Chrome notifications enabled on your device. Input text, click 'Start Tracking', and get notified when the content appears.", "background": { "service_worker": "scripts\/serviceWorker\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentScripts\/utils.js", "scripts\/contentScripts\/startObserving.js" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "disabled_icon": { "16": "images\/logo-disabled_16.png", "32": "images\/logo-disabled_32.png", "48": "images\/logo-disabled_48.png", "128": "images\/logo-disabled_128.png" } }, "icons": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "web_accessible_resources": [ { "resources": [ "sound\/notification.wav" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] }