LabelsBase.Beatport

Identify record labels on Beatport which are available on LabelsBase

LabelsBase.Beatport là gì?

LabelsBase.Beatport là một tiện ích mở rộng Chrome được phát triển bởi Denis Brazhnikov, và tính năng chính của nó là "Identify record labels on Beatport which are available on LabelsBase".

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

screenshot

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

Tải xuống các tệp mở rộng LabelsBase.Beatport 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

                        The extension adds an icon near all the LabelsBase-available labels on beatport.com, so you can easily find the label contacts, links, description etc.                    

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

Tên LabelsBase.Beatport LabelsBase.Beatport
ID hmnnmkppfllhndkjcpdiobhlkpkanace
URL Chính Thức https://chromewebstore.google.com/detail/labelsbasebeatport/hmnnmkppfllhndkjcpdiobhlkpkanace
Mô tả Identify record labels on Beatport which are available on LabelsBase
Kích Thước Tệp 8.52 KB
Số Lần Cài Đặt 204
Phiên Bản Hiện Tại 0.0.0.5
Cập Nhật Lần Cuối 2020-10-13
Ngày Phát Hành 2019-02-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Denis Brazhnikov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://labelsbase.net
URL Trang Chính Sách Bảo Mật https://labelsbase.net/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LabelsBase.Beatport",
    "short_name": "LabelsBase.Beatport",
    "description": "Identify record labels on Beatport which are available on LabelsBase",
    "version": "0.0.0.5",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.beatport.com\/*"
            ],
            "js": [
                "magick.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/app.labelsbase.net\/chrome\/*"
    ],
    "web_accessible_resources": [
        "lb.svg"
    ]
}