HBO Sync

Watch HBO GO/NOW videos with a friend.

HBO Syncคืออะไร?

HBO Sync เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rchen1992 และคุณลักษณะหลักของมันคือ "Watch HBO GO/NOW videos with a friend."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HBO Sync

ดาวน์โหลดไฟล์ส่วนขยาย HBO Sync ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}