Bandcamp to Spotify

Searches Spotify for an album on Bandcamp

Bandcamp to Spotify là gì?

Bandcamp to Spotify là một tiện ích mở rộng Chrome được phát triển bởi hdaniel1, và tính năng chính của nó là "Searches Spotify for an album on Bandcamp".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Bandcamp to Spotify 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

                        Quickly searches Spotify for an album / artist combination from Bandcamp.                    

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

Tên Bandcamp to Spotify Bandcamp to Spotify
ID jidagjanelgimifhmmpocnppmodololk
URL Chính Thức https://chrome.google.com/webstore/detail/bandcamp-to-spotify/jidagjanelgimifhmmpocnppmodololk
Mô tả Searches Spotify for an album on Bandcamp
Kích Thước Tệp 6.35 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-07-14
Ngày Phát Hành 2019-07-14
Nhà Phát Triển hdaniel1
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bandcamp to Spotify",
    "description": "Searches Spotify for an album on Bandcamp",
    "version": "1.0",
    "browser_action": {
        "default_icon": "bc-to-spot-icon.png",
        "default_title": "Search Spotify?"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bandcamp.com\/album\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}