Bandcamp Streamer

Continuously stream from Bandcamp feed, collection, & wishlist pages + other cool features.

Bandcamp Streamer란 무엇입니까?

Bandcamp Streamer은(는) aflowofcode에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Continuously stream from Bandcamp feed, collection, & wishlist pages + other cool features."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bandcamp Streamer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Bandcamp Streamer features uninterrupted streaming from your feed, collection, & wishlist, greatly smoothing out the listening experience for those with fan accounts. No more pressing play after every track!

On the feed page, tracks are separated into two separate playlists: fan activity & new releases. The player allows you to skip back and forth and control the volume.

On your own collection page, you can stream full albums (that you own) back to back nonstop, or play through your favorite track from each release. Both playlists can be shuffled, and so can your wishlist. Scramble everything you've collected and listen to it nonstop for days on end! Search results are streamable as well (full albums only on collection tab).

You can also easily explore the collections of other fans and friends by streaming all of their featured/favorite or wishlisted tracks. Finding great new music is amazingly simple and efficient.

Extra features: 
* Load entire collections & wishlists in one click
* On the feed page, prices are listed next to the "buy now" buttons. 
* The spacebar can be used to start & stop the player while the arrow keys skip back and forth (including on regular album pages).

Known issues: 
* New stories added from the top while the feed page is loaded are not added to the playlist. If you want to hear them, just reload the page.
* If the collection/wishlist playlist has been shuffled when more tracks are added, it becomes unshuffled. It is recommended to load all the desired tracks to the page first, then shuffle and start the playlist.
* If you are playing from collection/wishlist search results & click to another tab, the current track will continue playing but the playlist will be lost.  
* If an item has been displayed in both collection or wishlist tab & the tab's search results, clicking on the item in the bottom player bar won't scroll to the correct location.  
* One-click loading of everything from very large collections/wishlists (1000+ items) may be buggy.

What this extension does *not* do: 
* Allow you to add a full album to your wishlist and then stream the whole thing. Playing only the first or featured track of an album in your wishlist is a Bandcamp limitation that this extension does not try to circumvent. You can do two things: support the artist and buy the album (best option for full flexibility + solidarity factor), or add each individual track from the album to your wishlist if possible. 
* Attempt to track you or any of your data in any way, or communicate with any third parties for any reason. This is a 100% privacy respecting extension.

Happy streaming!

Demo video: https://www.youtube.com/watch?v=uXO3qu-vz0Q

P.S. If you appreciate this extension, consider showing some support! Please leave a rating and some feedback, it's always motivating to hear from people who enjoy the extension. Suggestions and bug reports are also welcome, preferably via Github.

Any donation no matter how small is appreciated. Much like making music, writing browser extensions is often a labor of love with little to no financial benefits in return for a lot of heart and effort.

* https://www.paypal.me/aflowofcode     
* BTC: 1Juw5ZBdWujAYErTqGd6DwU48xL7HnnF6T
* ETH: 0x54e0beAAF0fA4858e9671aCcDEb4d5C4d4f41f95
* BCH: bitcoincash:qpaw45z4w4pudgdtevh5ysrwyf0xkmrq4cv69zjhc9                    

확장 프로그램 기본 정보

이름 Bandcamp Streamer Bandcamp Streamer
ID hopclencgmfjiipjmlenfcdgcdblfmjh
공식 URL https://chromewebstore.google.com/detail/bandcamp-streamer/hopclencgmfjiipjmlenfcdgcdblfmjh
설명 Continuously stream from Bandcamp feed, collection, & wishlist pages + other cool features.
파일 크기 48.93 KB
설치 횟수 1,412
현재 버전 1.4.1
최근 업데이트 2023-01-14
출시 날짜 2020-03-29
평점 3.86/5 총 14 개의 평점
개발자 aflowofcode
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/aflowofcode/bandcamp-streamer
도움말 페이지 URL https://github.com/aflowofcode/bandcamp-streamer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bandcamp Streamer",
    "version": "1.4.1",
    "description": "Continuously stream from Bandcamp feed, collection, & wishlist pages + other cool features.",
    "permissions": [
        "https:\/\/bandcamp.com\/*\/feed",
        "https:\/\/bandcamp.com\/*",
        "https:\/\/*.bandcamp.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bandcamp.com\/*\/feed",
                "https:\/\/bandcamp.com\/*",
                "https:\/\/*.bandcamp.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "contentScript.js",
        "modules\/*.js"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}