CrossWatch
Synchronize videos across various streaming services
CrossWatch là gì?
CrossWatch là một tiện ích mở rộng Chrome được phát triển bởi curlystrategist, và tính năng chính của nó là "Synchronize videos across various streaming services".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CrossWatch
Tải xuống các tệp mở rộng CrossWatch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
(Note: I have not updated this extension for a while, so it doesn't work in Funimation's new interface, and probably not on CrunchyRoll beta either. For CrunchyRoll compatible extension, use Roll Together! I believe this should still work on wakanim.tv, so Wakanim users might still find use for it, but I've decided to start work on a CrossWatch 2, which I'm building and structuring from scratch to be compatible with the new Manifest v3, and to be a little easier to extend with crosswatch capabilities for different services.) CrossWatch is a watch party extension derived from the Roll Together extension. CrossWatch will work across both Funimation, Wakanim and CrunchyRoll. You set up a CrossWatch server ( https://github.com/praabjerg/crosswatch_backend ), and each participant sets the server link in the extension options. If you watch with a regular group, you can also set a default Room ID. When you activate the extension on any of the three streaming services, you can join a room, and everyone in that room will have their video streams synchronized, regardless of which of the three streaming services they use. This extension aims to solve some of the issues with arranging watch parties across different regions with different licensing. Funimation and Wakanim in particular share many series because they are owned by the same company, but they are still different streaming services operating in different regions. Keep in mind: - This extension does not know or care *which* video you're watching, so participants have to navigate to the videos themselves, and you may even have to switch videos manually when reaching the end of an episode. - I do not at the moment run a public server for this extension. For now at least, your watch group needs to figure out where to run a server instance if you want to use it: https://github.com/praabjerg/crosswatch_backend If you're doing just a CrunchyRoll watch party specifically, you should probably use the Roll Together extension instead, as it's going to be more specialised for CrunchyRoll. This extension aims at being adaptable to different services, and so it removes some code and functionality that Roll Together has. Changes version 1.0-1.1: - The extension now hooks into the brightcove player API when on Funimation, instead of using the HTML5 api directly. This should fix most of the issues with playback stopping when seeking backward.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CrossWatch |
ID | bbnnjociplbmdbfmcnmmoingcmfincdh |
URL Chính Thức | https://chromewebstore.google.com/detail/crosswatch/bbnnjociplbmdbfmcnmmoingcmfincdh |
Mô tả | Synchronize videos across various streaming services |
Kích Thước Tệp | 221 KB |
Số Lần Cài Đặt | 382 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2022-02-13 |
Ngày Phát Hành | 2021-01-26 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | curlystrategist |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/praabjerg/crosswatch |
URL Trang Trợ Giúp | https://github.com/praabjerg/crosswatch |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CrossWatch", "version": "1.1", "description": "Synchronize videos across various streaming services", "background": { "scripts": [ "socket.io.js", "common.js", "background.js" ], "persistent": true }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/static.crunchyroll.com\/*", "*:\/\/www.wakanim.tv\/*", "*:\/\/www.funimation.com\/*" ], "js": [ "common.js", "content_script.js" ] } ], "web_accessible_resources": [ "pagescript.js" ], "permissions": [ "storage", "tabs", "activeTab", "declarativeContent", "*:\/\/www.crunchyroll.com\/*", "*:\/\/static.crunchyroll.com\/*", "*:\/\/www.wakanim.tv\/*", "*:\/\/www.funimation.com\/*" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "options_page": "options.html", "manifest_version": 2 } |