Discogs Diggr

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

什么是Discogs Diggr?

Discogs Diggr是由sebastian.kovats开发的Chrome扩展程序,该扩展的主要功能是“shows videos next to the releases on a store's page”。

扩展截图

screenshot

下载Discogs Diggr扩展crx文件

下载Discogs Diggr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}