Odesli for Bandcamp

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

Odesli for Bandcampคืออะไร?

Odesli for Bandcamp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bender Bureau และคุณลักษณะหลักของมันคือ "Open Bandcamp album on every streaming platform. Forever free. Powered by Odesli."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Odesli for Bandcamp

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}