Bandcamp Streamer

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

O que é Bandcamp Streamer?

Bandcamp Streamer é uma extensão do Chrome desenvolvida por aflowofcode, e sua principal característica é "Continuously stream from Bandcamp feed, collection, & wishlist pages + other cool features.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Bandcamp Streamer

Baixe arquivos de extensão Bandcamp Streamer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Bandcamp Streamer Bandcamp Streamer
ID hopclencgmfjiipjmlenfcdgcdblfmjh
URL Oficial https://chromewebstore.google.com/detail/bandcamp-streamer/hopclencgmfjiipjmlenfcdgcdblfmjh
Descrição Continuously stream from Bandcamp feed, collection, & wishlist pages + other cool features.
Tamanho do Arquivo 48.93 KB
Contagem de Instalações 1,412
Versão Atual 1.4.1
Última Atualização 2023-01-14
Data de Publicação 2020-03-29
Classificação 3.86/5 Total de 14 Avaliações
Desenvolvedor aflowofcode
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/aflowofcode/bandcamp-streamer
URL da Página de Ajuda https://github.com/aflowofcode/bandcamp-streamer/issues
Idiomas Suportados 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
}