YouTube Party

YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet.

YouTube Party란 무엇입니까?

YouTube Party은(는) WispyTech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet.

Watch YouTube Videos with your friends and family during quarantine!

The steps are simple:
* You and friends install the extension.
* Press the extension's icon on the top right of your browser.
* Start a session.
* Give your friends the generated YouTube link.
* Have them just navigate to the link in the browser. 
* Enjoy watching YouTube together!

You like the extension? buy me a coffee (btw, you don't have to <3) - https://www.buymeacoffee.com/yezenalnafei


----
Release Notes:
We always listen to your feedback and make it happen.

v0.5.1:
* Fixes an issue when YouTube redirects the url without party ID
* Minor improvements

v0.5.0:
* Adds indicator to show if the YouTube party is on/active.    
* Minor improvements

v0.4.0:
* Redesigned layout 
* Minor improvements

v0.3.0:
* Only change the url when its a watch one.
* Don't worry about not being in sync with friends when they seek due to slow/bad internet, now we put a mechanism to sync everybody at the same time.
* Reduced package size.                    

확장 프로그램 기본 정보

이름 YouTube Party YouTube Party
ID pcdocoohpenibkkkfigkgelhpbeogimb
공식 URL https://chromewebstore.google.com/detail/youtube-party/pcdocoohpenibkkkfigkgelhpbeogimb
설명 YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet.
파일 크기 176 KB
설치 횟수 10,012
현재 버전 0.5.2
최근 업데이트 2021-07-09
출시 날짜 2020-06-23
평점 4.06/5 총 32 개의 평점
개발자 WispyTech
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://wispytech.com/youtube-party.html
개인정보 보호 정책 페이지 URL https://wispytech.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Party",
    "version": "0.5.2",
    "manifest_version": 2,
    "description": "YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "YouTube Party",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/*.youtube.com\/*",
        "http:\/\/*.youtube.com\/*"
    ],
    "content_security_policy": "style-src 'self' 'unsafe-inline'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}