Youtube Connect

Control Youtube with other devices.

Youtube Connect란 무엇입니까?

Youtube Connect은(는) Ameya Thakur에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control Youtube with other devices."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Simply install the extension and open a Youtube video or playlist. A new button will be added to the settings bar of your video. Enable Youtube Connect and either scan the QR code or open the remote application and enter the 8 word mnemonic to connect to your session. This is a side project and is not perfect, but good enough for most use. Feel free to view the source and make contributions if you wish (or fork the project).

If Youtube connect is not enabling in the player, it likely means that the API server has shut down. If that occurs and you need to continue using the extension, you may modify the extension to use an API server you run yourself (based on the available source code).                    

확장 프로그램 기본 정보

이름 Youtube Connect Youtube Connect
ID lgfgmmnhfecoppibekiekkhncickeoki
공식 URL https://chrome.google.com/webstore/detail/youtube-connect/lgfgmmnhfecoppibekiekkhncickeoki
설명 Control Youtube with other devices.
파일 크기 21.96 KB
설치 횟수 28
현재 버전 0.1.2
최근 업데이트 2021-01-22
출시 날짜 2020-07-22
개발자 Ameya Thakur
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://youtubeconnect.ameyathakur.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Connect",
    "version": "0.1.2",
    "author": "Ameya Thakur",
    "homepage_url": "https:\/\/youtubeconnect.ameyathakur.com",
    "description": "Control Youtube with other devices.",
    "content_security_policy": "default-src 'self'",
    "icons": {
        "48": "icons\/icon.png",
        "96": "icons\/[email protected]",
        "128": "icons\/packageicon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "wordlist.js",
                "ytconnect.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/api.youtubeconnect.ameyathakur.com\/*"
    ]
}