Youtube Comment Viewer
Watch the video with comments on full screen!
什麼是Youtube Comment Viewer?
Youtube Comment Viewer是由tonymkcv93開發的Chrome擴展程式,該擴展的主要功能是“Watch the video with comments on full screen!”。
擴展截圖
下載Youtube Comment Viewer擴展crx文件
下載Youtube Comment Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Enjoy view comments on all types of screens without scrolling down!! ---- Features ➡️ View comment with all video types (fullscreen, theater, general mode) ➡️ Drag to size the comment window ➡️ Automatically resize the video based on the size of the comment window ➡️ Support Dark mode ➡️ easily Toggle "always turn on/off Comment Viewer" ---- Why youtube comment viewer is needed. Traditional YouTube requires scrolling down to read comments. This is very cumbersome. With 'Youtube Comment Viewer', you can easily display comments on the right side of the video, and the size of the window can also be resized ---- 💬Bug reports and inquiries - [email protected] ----
擴展基本資訊
名稱 | Youtube Comment Viewer |
ID | dbkfbnelkejobnjchbcebhhjeaengldp |
官方網址 | https://chromewebstore.google.com/detail/youtube-comment-viewer/dbkfbnelkejobnjchbcebhhjeaengldp |
簡介 | Watch the video with comments on full screen! |
檔案大小 | 786 KB |
安裝次數 | 482 |
目前版本 | 1.0.6 |
更新時間 | 2023-07-16 |
上架時間 | 2023-06-07 |
評分 | 5.00/5 共 14 次評分 |
開發者 | tonymkcv93 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en,zh-CN,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.6", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "background": { "service_worker": "scripts\/background.js" }, "web_accessible_resources": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "resources": [ "scripts\/interact.js" ] } ], "content_scripts": [ { "type": "module", "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "scripts\/content-script.js" ], "css": [ "styles\/style.css" ] } ], "action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "icons": { "128": "images\/icon.png" }, "permissions": [ "webNavigation", "storage" ] } |