HBO Sync

Watch HBO GO/NOW videos with a friend.

HBO Sync란 무엇입니까?

HBO Sync은(는) rchen1992에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch HBO GO/NOW videos with a friend."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        HBO Sync lets you watch HBO GO/NOW videos with a friend remotely by synchronizing the times of your videos. Whenever you play, pause, or seek your video, your friend's video will do the same (and vice versa).

Users can also optionally use video/audio chat to communicate during the show!

*SETUP*
- both users should install this Chrome extension
- both users must be logged into HBO GO/NOW (can use same account)
- navigate to any page with a playable video and the extension will become available
- click extension icon and follow the instructions in the extension popup

This extension does NOT:
- do screen sharing
- allow you to stream HBO GO/NOW videos to another person
- send data to a server (the connection between users is purely peer-to-peer)                    

확장 프로그램 기본 정보

이름 HBO Sync HBO Sync
ID gbjjiboahenbmgokijecbolffaocafap
공식 URL https://chromewebstore.google.com/detail/hbo-sync/gbjjiboahenbmgokijecbolffaocafap
설명 Watch HBO GO/NOW videos with a friend.
파일 크기 25.01 KB
설치 횟수 4,072
현재 버전 1.6
최근 업데이트 2020-03-31
출시 날짜 2020-03-31
평점 1.31/5 총 36 개의 평점
개발자 rchen1992
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HBO Sync",
    "version": "1.6",
    "description": "Watch HBO GO\/NOW videos with a friend.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/logo16.png",
            "32": "icons\/logo32.png",
            "48": "icons\/logo48.png",
            "128": "icons\/logo128.png"
        }
    },
    "icons": {
        "16": "icons\/logo16.png",
        "32": "icons\/logo32.png",
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.hbonow.com\/*",
                "https:\/\/play.hbogo.com\/*",
                "https:\/\/hbogo.ro\/*"
            ],
            "css": [
                "main.css",
                "loading.css"
            ],
            "js": [
                "peer.min.js",
                "overlay.js",
                "videoStream.js",
                "peerConnection.js"
            ]
        }
    ]
}