Y. Split View

Setup multiple YouTube stream within one screen.

Y. Split View क्या है?

Y. Split View ChanPete द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Setup multiple YouTube stream within one screen."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Y. Split View एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Your favorite YouTubers are collaborating together and you want to watch their live streaming all together? This extension is for you.

———————————————————
Features
———————————————————
- Setup multiple YouTube videos / live streamings together at one screen.
(only one video can be playing at the same time)

- Dynamic resize and move the video.

- Support Live Chat. 
(Super Chat and Super Emoji cannot be sent due to the restriction of YouTube)

- Blue Wrench Live Chat popup like a Super Chat Card for easier viewing.

- Support Dark Mode for Live Chat.

- Stream status embedded.

- Optimization for reducing CPU usage of Live Chat.

- Support Archived Live Chat.

———————————————————
Legal
———————————————————

Terms of Services

-  By using this extension, you are agreed to YouTube Terms Of Services.
(https://www.youtube.com/t/terms)

- This is an independent project developed by ChanPete and has no relationship to YouTube or Google.

Privacy

- No information of any is collected from this extension.

- Your data is still being collected by Google when using YouTube services, details of related policy please refer to Google Privacy policy.
(https://policies.google.com/privacy)

Licenses

- Icons made by Freepik. 
(https://www.flaticon.com/authors/freepik)

- Google Material icons used under Apache license version 2.0. 
(https://www.apache.org/licenses/LICENSE-2.0.html)

- YouTube API Services is used. 
(https://developers.google.com/youtube/terms/api-services-terms-of-service)                    

एक्सटेंशन की मूल जानकारी

नाम Y. Split View Y. Split View
ID gejhlimpekolibglangfmpnnidcgdhkj
आधिकारिक URL https://chromewebstore.google.com/detail/y-split-view/gejhlimpekolibglangfmpnnidcgdhkj
विवरण Setup multiple YouTube stream within one screen.
फ़ाइल का आकार 3.23 MB
स्थापना संख्या 3,373
वर्तमान संस्करण 1.11.0
अंतिम अपडेट 2023-06-20
प्रकाशन तिथि 2020-10-29
रेटिंग 4.65/5 कुल 17 रेटिंग्स
डेवलपर ChanPete
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Y. Split View",
    "description": "Setup multiple YouTube stream within one screen.",
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webRequest",
        "webRequestBlocking",
        "contextMenus",
        "storage"
    ],
    "icons": {
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*",
                "https:\/\/www.youtube.com\/live_chat_replay*"
            ],
            "js": [
                ".\/js\/livechat.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/embed*"
            ],
            "js": [
                ".\/js\/player.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Y. Split View",
        "default_icon": {
            "32": "icons\/32.png",
            "64": "icons\/64.png"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/www.youtube.com; object-src 'self'",
    "version": "1.11.0"
}