Odesli for Bandcamp

Open Bandcamp album on every streaming platform. Forever free. Powered by Odesli.

Odesli for Bandcampとは何ですか?

Odesli for BandcampはBender Bureauによって開発されたChromeの拡張機能で、その主な機能は「Open Bandcamp album on every streaming platform. Forever free. Powered by Odesli.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Odesli for Bandcamp拡張機能のCRXファイルをダウンロード

Odesli for Bandcamp拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        What's new?
• Upgrade to Manifest v3, Fixed incompatibility with LastFM Web Scrobbler.
• Icon set updated.
• Removed SoundCloud API request. Closed for developers.
• The problem with CORS requests has been solved.
• Added Soundcloud API. Search in Soundcloud API if iTunes API fails.
• Added the ability to select the type of Spotify and Apple Music links: web links or links to desktop applications. Extension options are available by clicking the extension icon and selecting "Options" from the drop-down menu.

This extension embeds links to albums from Bandcamp to all available streaming services (Apple Music, Spotify, etc.)

Works on album pages, track pages and on home page in the "discovery new music" section. If the album is only available on Bandcamp, you will see a corresponding message.                    

拡張機能の基本情報

名前 Odesli for Bandcamp Odesli for Bandcamp
ID ikgagbiblpfihbccekppfbpmjekingcm
公式URL https://chromewebstore.google.com/detail/odesli-for-bandcamp/ikgagbiblpfihbccekppfbpmjekingcm
説明 Open Bandcamp album on every streaming platform. Forever free. Powered by Odesli.
ファイルサイズ 663 KB
インストール数 373
現在のバージョン 3.0
最終更新日 2023-12-25
公開日 2020-06-25
評価 4.25/5 合計 4 レビュー
開発者 Bender Bureau
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Odesli for Bandcamp",
    "description": "Open Bandcamp album on every streaming platform. Forever free. Powered by Odesli.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "3.0",
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_popup": "options.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bandcamp.com\/album\/*"
            ],
            "js": [
                "jquery.min.js",
                "bc_inject_album.js",
                "sdk-3.3.2.js"
            ],
            "css": [
                "bc_styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/bandcamp.com\/",
                "*:\/\/bandcamp.com\/?g*"
            ],
            "js": [
                "jquery.min.js",
                "bc_inject_discover.js",
                "sdk-3.3.2.js"
            ],
            "css": [
                "bc_styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.bandcamp.com\/track\/*"
            ],
            "js": [
                "jquery.min.js",
                "bc_inject_track.js",
                "sdk-3.3.2.js"
            ],
            "css": [
                "bc_styles.css"
            ]
        }
    ]
}