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": "Discogs Tempo Adjust", "description": "A browser extension to adjust track tempo on Discogs", "version": "0.1.2", "icons": { "16": "icon-16.png", "128": "icon-128.png" }, "action": [], "browser_specific_settings": [], "background": { "type": "module", "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.discogs.com\/*" ], "css": [ "content-scripts\/discogs.css" ], "js": [ "content-scripts\/discogs.js" ] }, { "matches": [ "https:\/\/*.youtube-nocookie.com\/*", "https:\/\/*.youtube.com\/*" ], "all_frames": true, "js": [ "content-scripts\/youtube.js" ] } ] }