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": "ASD - Advanced Streaming URL Detector", "version": "1.0", "description": "Detect and play streaming URLs (HLS, M3U, TS) on web pages. Features built-in HLS player for seamless media playback.", "author": "Liran Yzhak", "permissions": [ "activeTab", "storage", "notifications", "declarativeNetRequest", "declarativeNetRequestFeedback", "webRequest", "tabs" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "icon.png" }, "web_accessible_resources": [ { "resources": [ "popup.css", "player.html", "player.js", "hls.min.js" ], "matches": [ "<all_urls>" ] } ] }