YouTube to Watch2gether

Adds a button which sends YT videos to open W2G session

YouTube to Watch2gether क्या है?

YouTube to Watch2gether jaykayukdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button which sends YT videos to open W2G session"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube to Watch2gether एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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\/*"
            ]
        }
    ]
}