Discogs Diggr
shows videos next to the releases on a store's page
What is Discogs Diggr?
Discogs Diggr is a Chrome extension developed by sebastian.kovats, and its main feature is "shows videos next to the releases on a store's page".
Extension Screenshots
Download Discogs Diggr Extension CRX File
Download Discogs Diggr extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This simple Chrome extension makes digging through a Discogs store more convenient by directly placing the YouTube videos that have been linked to a release next to it. Say goodbye to endless back and forth between release and store page!
Extension Basic Information
Name | Discogs Diggr |
ID | igmnleelldgamcmifnjenhkegdgfaocc |
Official URL | https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc |
Description | shows videos next to the releases on a store's page |
File Size | 613 KB |
Installation Count | 53 |
Current Version | 0.1.1 |
Last Updated | 2024-02-03 |
Publish Date | 2022-05-10 |
Developer | sebastian.kovats |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/seboko/discogs-diggr-chrome |
Help Page URL | https://github.com/seboko/discogs-diggr-chrome |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Discogs Diggr", "description": "shows videos next to the releases on a store's page", "version": "0.1.1", "manifest_version": 3, "icons": { "128": ".\/assets\/diggr-logo.png" }, "options_page": ".\/src\/html\/options.html", "browser_action": { "default_popup": ".\/src\/html\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.discogs.com\/*seller\/*\/profile*" ], "js": [ ".\/src\/js\/foreground.js" ], "run_at": "document_idle" } ] } |