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.”。
擴展截圖
下載Youtube Right Side Comments擴展crx文件
下載Youtube Right Side Comments擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | hflbochcfgcogoappafanhgopooakega |
官方網址 | 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 } |