Discogs Diggr
shows videos next to the releases on a store's page
Co je Discogs Diggr?
Discogs Diggr je rozšíření Chrome vyvinuté sebastian.kovats, a jeho hlavní funkcí je „shows videos next to the releases on a store's page“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Discogs Diggr
Stáhněte si soubory rozšíření Discogs Diggr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
                        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!                     Základní Informace o Rozšíření
| Název |  | 
| ID | igmnleelldgamcmifnjenhkegdgfaocc | 
| Oficiální URL | https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc | 
| Popis | shows videos next to the releases on a store's page | 
| Velikost souboru | 613 KB | 
| Počet instalací | 53 | 
| Aktuální Verze | 0.1.1 | 
| Poslední Aktualizace | 2024-02-03 | 
| Datum Vydání | 2022-05-10 | 
| Vývojář | sebastian.kovats | 
| [email protected] | |
| Typ Platby | free | 
| Webové stránky Rozšíření | https://github.com/seboko/discogs-diggr-chrome | 
| URL Stránky Nápovědy | https://github.com/seboko/discogs-diggr-chrome | 
| Podporované Jazyky | 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"
        }
    ]
} | |