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”。

扩展截图

screenshot
screenshot

下载YouTube to Watch2gether扩展crx文件

下载YouTube to Watch2gether扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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\/*"
            ]
        }
    ]
}