Discogify

Preview discogs tracks easier.

Discogify란 무엇입니까?

Discogify은(는) Phatbyte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Preview discogs tracks easier."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Discogify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Discogify is a small music video player for Discogs website that allows you to preview any item that contains YouTube videos in a easy and practical way without having to jump through pages.

This is a great tool for DJs and crate diggers that want to quickly and easily have an audio preview for a particular release.

🚀 Features:
- Automatically adds a "Preview" button to any available item on Discogs
- Playlist
- Hide/Show videos
- Next & Previous shortcuts
- Settings popup
- Minimal Design

⌨️ Key shortcuts:
- Press '.' Next Item
- Press ',' Previous Item                    

확장 프로그램 기본 정보

이름 Discogify Discogify
ID jkkcagdphpnlkfflbonlnkcjffngkamc
공식 URL https://chromewebstore.google.com/detail/discogify/jkkcagdphpnlkfflbonlnkcjffngkamc
설명 Preview discogs tracks easier.
파일 크기 30.98 KB
설치 횟수 97
현재 버전 1.0.10
최근 업데이트 2023-10-08
출시 날짜 2023-10-06
평점 5.00/5 총 3 개의 평점
개발자 Phatbyte
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Discogify",
    "version": "1.0.10",
    "description": "Preview discogs tracks easier.",
    "icons": {
        "32": "icons\/discogify-32.png",
        "64": "icons\/discogify-64.png",
        "96": "icons\/discogify-96.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.discogs.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "discogify.js"
            ],
            "css": [
                "discogify.css"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/discogify-32.png",
        "default_title": "Discogify",
        "show_matches": [
            "*:\/\/www.discogs.com\/*"
        ],
        "default_popup": "popup\/discogify.html"
    }
}