Discogify

Preview discogs tracks easier.

Discogify là gì?

Discogify là một tiện ích mở rộng Chrome được phát triển bởi Phatbyte, và tính năng chính của nó là "Preview discogs tracks easier.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Discogify

Tải xuống các tệp mở rộng Discogify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Discogify Discogify
ID jkkcagdphpnlkfflbonlnkcjffngkamc
URL Chính Thức https://chromewebstore.google.com/detail/discogify/jkkcagdphpnlkfflbonlnkcjffngkamc
Mô tả Preview discogs tracks easier.
Kích Thước Tệp 30.98 KB
Số Lần Cài Đặt 97
Phiên Bản Hiện Tại 1.0.10
Cập Nhật Lần Cuối 2023-10-08
Ngày Phát Hành 2023-10-06
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Phatbyte
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}