Discogs Diggr
shows videos next to the releases on a store's page
Apa itu Discogs Diggr?
Discogs Diggr adalah ekstensi Chrome yang dikembangkan oleh sebastian.kovats, dan fitur utamanya adalah "shows videos next to the releases on a store's page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Discogs Diggr
Unduh file ekstensi Discogs Diggr dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Discogs Diggr |
ID | igmnleelldgamcmifnjenhkegdgfaocc |
URL Resmi | https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc |
Deskripsi | shows videos next to the releases on a store's page |
Ukuran File | 613 KB |
Jumlah Instalasi | 53 |
Versi Saat Ini | 0.1.1 |
Terakhir Diperbarui | 2024-02-03 |
Tanggal Publikasi | 2022-05-10 |
Pengembang | sebastian.kovats |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/seboko/discogs-diggr-chrome |
URL Halaman Bantuan | https://github.com/seboko/discogs-diggr-chrome |
Bahasa yang Didukung | 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" } ] } |