HBO Sync
Watch HBO GO/NOW videos with a friend.
什麼是HBO Sync?
HBO Sync是由rchen1992開發的Chrome擴展程式,該擴展的主要功能是“Watch HBO GO/NOW videos with a friend.”。
擴展截圖
下載HBO Sync擴展crx文件
下載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 |
ID | gbjjiboahenbmgokijecbolffaocafap |
官方網址 | 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" ] } ] } |