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": "Search on Spotify", "version": "1.0", "description": "Search for songs on Spotify from selected text", "permissions": [ "contextMenus", "activeTab", "storage" ], "host_permissions": [ "https:\/\/api.spotify.com\/*", "https:\/\/open.spotify.com\/*", "https:\/\/accounts.spotify.com\/*" ], "icons": { "16": "icons\/spotifylogo.png", "48": "icons\/spotifylogo.png", "128": "icons\/spotifylogo.png" }, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "16": "icons\/spotifylogo.png", "48": "icons\/spotifylogo.png", "128": "icons\/spotifylogo.png" }, "default_popup": "popup.html" }, "options_page": "options.html", "web_accessible_resources": [ { "resources": [ "spotify-api.js" ], "matches": [ "<all_urls>" ] } ] }