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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily toggle YouTube comments to the right or default left side with our Chrome extension for a more organized viewing experience."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Youtube Right Side Comments 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}