YouTube to Watch2gether
Adds a button which sends YT videos to open W2G session
YouTube to Watch2gether là gì?
YouTube to Watch2gether là một tiện ích mở rộng Chrome được phát triển bởi jaykayukdev, và tính năng chính của nó là "Adds a button which sends YT videos to open W2G session".
Ả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 YouTube to Watch2gether
Tải xuống các tệp mở rộng YouTube to Watch2gether 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
Extension that adds a button to YouTube thumbnails and the video page, which sends YT videos to an open W2G session. If a W2G session isn't open, the extension will open w2g.tv page, but you still need to start a session. The extension adds a button to: - video page - thumbnails - videos in a playlist - shorts thumbnails This is my first extension, so expect some bugs. I will try my best to fix them. The extension is open source, so you can check the code yourself. https://github.com/JayKayUk/YTtoW2G-firefox If you like what I do, consider buying me a coffee ;) https://www.buymeacoffee.com/jaykayuk 1.0.2 [15/02/23] - fix videos not adding after w2g redesign
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube to Watch2gether |
ID | kbcpjgdklnkibhgjjgnngpcfkaejjoii |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-to-watch2gether/kbcpjgdklnkibhgjjgnngpcfkaejjoii |
Mô tả | Adds a button which sends YT videos to open W2G session |
Kích Thước Tệp | 46.61 KB |
Số Lần Cài Đặt | 18 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2023-02-16 |
Ngày Phát Hành | 2023-02-01 |
Nhà Phát Triển | jaykayukdev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/JayKayUk/YTtoW2G-chrome |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "browser-style": true, "default-icons": { "16": "icons\/main-icon-16.png", "32": "icons\/main-icon-32.png", "64": "icons\/main-icon-64.png" }, "default-title": "YTtoW2G" }, "author": "JayKayUk", "background": { "service_worker": "background-script.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "src\/yt\/style.css" ], "js": [ "src\/yt\/main.js" ] }, { "matches": [ "https:\/\/w2g.tv\/*\/room\/*" ], "js": [ "src\/w2g\/main.js" ] } ], "description": "Adds a button which sends YT videos to open W2G session", "homepage_url": "https:\/\/github.com\/JayKayUk\/YTtoW2G-firefox", "host_permissions": [ "https:\/\/w2g.tv\/*\/room\/*" ], "icons": { "16": "icons\/main-icon-16.png", "32": "icons\/main-icon-32.png", "48": "icons\/main-icon-48.png", "64": "icons\/main-icon-64.png", "96": "icons\/main-icon-96.png", "128": "icons\/main-icon-128.png" }, "manifest_version": 3, "name": "YouTube to Watch2gether", "permissions": [ "tabs", "scripting" ], "version": "1.0.2", "web_accessible_resources": [ { "resources": [ "\/icons\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |