YouTube to Watch2gether
Adds a button which sends YT videos to open W2G session
YouTube to Watch2gether란 무엇입니까?
YouTube to Watch2gether은(는) jaykayukdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button which sends YT videos to open W2G session"입니다.
확장 프로그램 스크린샷
YouTube to Watch2gether 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | YouTube to Watch2gether |
ID | kbcpjgdklnkibhgjjgnngpcfkaejjoii |
공식 URL | https://chrome.google.com/webstore/detail/youtube-to-watch2gether/kbcpjgdklnkibhgjjgnngpcfkaejjoii |
설명 | Adds a button which sends YT videos to open W2G session |
파일 크기 | 46.61 KB |
설치 횟수 | 18 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-02-16 |
출시 날짜 | 2023-02-01 |
개발자 | jaykayukdev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/JayKayUk/YTtoW2G-chrome |
지원되는 언어 | 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\/*" ] } ] } |