Discogs Diggr
shows videos next to the releases on a store's page
Co to jest Discogs Diggr?
Discogs Diggr to rozszerzenie Chrome opracowane przez sebastian.kovats, a jego główną funkcją jest „shows videos next to the releases on a store's page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Discogs Diggr
Pobierz pliki rozszerzeń Discogs Diggr w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | igmnleelldgamcmifnjenhkegdgfaocc |
| Oficjalny URL | https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc |
| Opis | shows videos next to the releases on a store's page |
| Rozmiar pliku | 613 KB |
| Liczba instalacji | 53 |
| Aktualna Wersja | 0.1.1 |
| Ostatnia Aktualizacja | 2024-02-03 |
| Data Publikacji | 2022-05-10 |
| Deweloper | sebastian.kovats |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/seboko/discogs-diggr-chrome |
| Adres URL Strony Pomocy | https://github.com/seboko/discogs-diggr-chrome |
| Obsługiwane Języki | 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"
}
]
} | |