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": "Udemy Price Tracker", "version": "1.1", "description": "Track Udemy course prices and get notified of discounts", "permissions": [ "storage", "alarms", "notifications", "tabs" ], "host_permissions": [ "https:\/\/www.udemy.com\/*", "https:\/\/dhwnh.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "img\/logo.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "img\/logo.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.udemy.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] }