Youtube Right Side Comments

Easily toggle YouTube comments to the right or default left side with our Chrome extension for a more organized viewing experience.

Youtube Right Side Comments क्या है?

Youtube Right Side Comments Shantesh Sindgi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily toggle YouTube comments to the right or default left side with our Chrome extension for a more organized viewing experience."।

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

screenshot
screenshot
screenshot

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

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

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

                        Simplify your YouTube viewing experience with our Chrome extension! Tired of constantly scrolling through comments on the left side of your screen? Our extension allows you to easily toggle comments to the right side or back to the default left side with just one click. Enjoy a clean and organized video viewing experience, while still keeping up with the conversation. Get it now and make your YouTube experience more convenient.

Feature Alert : - 
Now you can use hot key Ctrl + Shift + Y to toggle.
The new feature of this Chrome extension allows you to customize the background color of the comments box according to your preference, making it easier to read and interact with. You can choose from a variety of colors to find the one that suits you best. With this added feature, you can now personalize your commenting experience and make it more comfortable for you.                    

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

नाम Youtube Right Side Comments Youtube Right Side Comments
ID hflbochcfgcogoappafanhgopooakega
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-right-side-commen/hflbochcfgcogoappafanhgopooakega
विवरण Easily toggle YouTube comments to the right or default left side with our Chrome extension for a more organized viewing experience.
फ़ाइल का आकार 287 KB
स्थापना संख्या 798
वर्तमान संस्करण 4.0
अंतिम अपडेट 2024-01-08
प्रकाशन तिथि 2021-07-22
रेटिंग 5.00/5 कुल 10 रेटिंग्स
डेवलपर Shantesh Sindgi
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "4.0",
    "name": "Youtube Right Side Comments",
    "description": "Easily toggle YouTube comments to the right or default left side with our Chrome extension for a more organized viewing experience.",
    "icons": {
        "128": "youtubeIcon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "youtubeIcon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle-comments": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Ctrl+Shift+Y"
            },
            "description": "Toggle YouTube comments position"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "commands"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}