Youtube Video always visible & on top
Read comments while watching your favorite Youtube videos at the same time!
Youtube Video always visible & on top là gì?
Youtube Video always visible & on top là một tiện ích mở rộng Chrome được phát triển bởi RCHRD, và tính năng chính của nó là "Read comments while watching your favorite Youtube videos at the same time!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Video always visible & on top
Tải xuống các tệp mở rộng Youtube Video always visible & on top dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Read comments while watching your favorite Youtube videos at the same time. This extension will stick the video to the top of the screen while you are still able to scroll through the comments. The overlay on the video while hovering over it will also display the title, the amount of views and the percentage of likes / dislikes. Recommended resolution: 1920 x 1080 Version 1.1.2 - Fixed top margin when enabled Version 1.1.1 - Settings are now visible without having to refresh the page Version 1.1.0: - You can now enable/disable the extension in the settings menu at a Youtube video - Overlay is removed due to bugs - Fixed the white border on top of the screen when watching fullscreen videos - Fixed the positions so the playlist will stay at the same position
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | enpddmbnhblebaopmncdijhfnjnbcdjm |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-video-always-visi/enpddmbnhblebaopmncdijhfnjnbcdjm |
Mô tả | Read comments while watching your favorite Youtube videos at the same time! |
Kích Thước Tệp | 45.49 KB |
Số Lần Cài Đặt | 466 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2017-05-13 |
Ngày Phát Hành | 2017-05-13 |
Đánh Giá | 2.87/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | RCHRD |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Video always visible & on top", "short_name": "Youtube Video always visible", "description": "Read comments while watching your favorite Youtube videos at the same time!", "version": "1.1.2", "browser_action": { "persistent": true, "default_icon": "icon128.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "youtube.css" ], "js": [ "js\/jquery.js", "js\/script.js" ], "run_at": "document_end" } ] } |