Backbeat

An extension to synchronize streamers and viewers from Twitch with cross-platform (Youtube, Deezer)

Backbeat란 무엇입니까?

Backbeat은(는) https://backbeat.live에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to synchronize streamers and viewers from Twitch with cross-platform (Youtube, Deezer)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Listen to the music your favorite streamer is playing on his stream!

Enjoy more your viewing experience on Twitch with copyrighted music.
With Backbeat, the new way for streamers to play music on their streams you can open a a tab and sync the music with the streamer.
Backbeat can synchronise Deezer and YouTube music. 

This extension is free please consider giving a tip with Brave and BAT.

Alpha features:
- listen to music with Deezer and YouTube ( youtube is deprecated)

Upcoming features:
- Streamer recommandations depending on the music you love                    

확장 프로그램 기본 정보

이름 Backbeat Backbeat
ID bgpdffmibdmmnlohmbeadileehablkpe
공식 URL https://chromewebstore.google.com/detail/backbeat/bgpdffmibdmmnlohmbeadileehablkpe
설명 An extension to synchronize streamers and viewers from Twitch with cross-platform (Youtube, Deezer)
파일 크기 326 KB
설치 횟수 37
현재 버전 Alpha 0.0.7 (30/12/21)
최근 업데이트 2021-12-31
출시 날짜 2021-08-15
평점 5.00/5 총 2 개의 평점
개발자 https://backbeat.live
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://backbeat.live
도움말 페이지 URL https://backbeat.live
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Backbeat",
    "description": "An extension to synchronize streamers and viewers from Twitch with cross-platform (Youtube, Deezer)",
    "version": "0.0.7",
    "version_name": "Alpha 0.0.7 (30\/12\/21)",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background\/messageReciever.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.backbeat.live\/redirect\/twitch*",
                "*:\/\/*.localhost\/redirect\/twitch*"
            ],
            "js": [
                "js\/contentScripts\/twitchRedirect.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.backbeat.live\/redirect\/deezer*",
                "*:\/\/*.localhost\/redirect\/deezer*"
            ],
            "js": [
                "js\/contentScripts\/deezerRedirect.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.backbeat.live\/redirect\/spotify*",
                "*:\/\/*.localhost\/redirect\/spotify*"
            ],
            "js": [
                "js\/contentScripts\/spotifyRedirect.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.backbeat.live\/redirect\/youtube*",
                "*:\/\/*.localhost\/redirect\/youtube*"
            ],
            "js": [
                "js\/contentScripts\/youtubeRedirect.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.amazon.fr\/",
                "*:\/\/www.amazon.co.uk\/",
                "*:\/\/www.amazon.de\/",
                "*:\/\/www.amazon.com\/",
                "*:\/\/www.amazon.es\/",
                "*:\/\/www.amazon.com.mx\/"
            ],
            "js": [
                "js\/contentScripts\/amazonRedirect.js"
            ]
        }
    ],
    "icons": {
        "128": ".\/assets\/images\/logos\/backbeat.png"
    },
    "web_accessible_resources": [
        ".\/pages"
    ],
    "browser_action": {
        "default_popup": ".\/popup\/index.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/api.deezer.com https:\/\/cdn.socket.io https:\/\/e-cdns-files.dzcdn.net https:\/\/www.youtube.com https:\/\/sdk.scdn.co; object-src 'self';"
}