Discogs Diggr

shows videos next to the releases on a store's page

Discogs Diggr क्या है?

Discogs Diggr sebastian.kovats द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "shows videos next to the releases on a store's page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Discogs Diggr एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Discogs Diggr Discogs Diggr
ID igmnleelldgamcmifnjenhkegdgfaocc
आधिकारिक URL https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc
विवरण shows videos next to the releases on a store's page
फ़ाइल का आकार 613 KB
स्थापना संख्या 53
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2024-02-03
प्रकाशन तिथि 2022-05-10
डेवलपर sebastian.kovats
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/seboko/discogs-diggr-chrome
सहायता पृष्ठ URL https://github.com/seboko/discogs-diggr-chrome
समर्थित भाषाएँ 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"
        }
    ]
}