Discogs Diggr
shows videos next to the releases on a store's page
Vad är Discogs Diggr?
Discogs Diggr är en Chrome-tillägg utvecklad av sebastian.kovats, och dess huvudfunktion är "shows videos next to the releases on a store's page".
Tilläggsskärmbilder
Ladda ner Discogs Diggr-förlängningens CRX-fil
Ladda ner Discogs Diggr-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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! Grundläggande Information om Tillägg
| Namn | |
| ID | igmnleelldgamcmifnjenhkegdgfaocc |
| Officiell webbadress | https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc |
| Beskrivning | shows videos next to the releases on a store's page |
| Filstorlek | 613 KB |
| Antal Installationer | 53 |
| Aktuell Version | 0.1.1 |
| Senast Uppdaterad | 2024-02-03 |
| Publiceringsdatum | 2022-05-10 |
| Utvecklare | sebastian.kovats |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/seboko/discogs-diggr-chrome |
| Hjälpsida URL | https://github.com/seboko/discogs-diggr-chrome |
| Stödda Språk | 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"
}
]
} | |