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": "Still Listening? Pandora", "version": "2.0", "description": "Monitors for the Still Listening dialog on Pandora.com and clicks the Keep Listening button automatically.", "icons": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "alarms", "cookies", "activeTab" ], "host_permissions": [ "https:\/\/www.pandora.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.pandora.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "popup.js" ], "matches": [ "https:\/\/www.pandora.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';", "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';", "worker-src": "self" } }