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": "YouTube Playlist Explorer", "version": "1.0.1", "description": "Explore playlists containing the current YouTube video, with a focus on distinguishing between the creator's playlists and others.", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "YouTube Playlist Explorer", "default_popup": "popup\/popup.html" }, "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "scripts\/content_dropdown.css" ], "js": [ "scripts\/url_monitor.js", "scripts\/content_dropdown.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.googleapis.com\/*" ] }