YouTube Only Video
Have a private moment with your favourite video.
YouTube Only Video là gì?
YouTube Only Video là một tiện ích mở rộng Chrome được phát triển bởi jmt, và tính năng chính của nó là "Have a private moment with your favourite video.".
Ả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 Only Video
Tải xuống các tệp mở rộng YouTube Only Video 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
⚠ Epilepsy warning: This extension contains a mode in which your screen's background color changes its color quickly. A warning message is shown when it is going to be activated. If you're a person who suffers from photosensitive epilepsy, I recommend you to not use this mode. ⚠ Sometimes you just want to remove every HTML element from the YouTube page and be alone with the video you're watching. Indeed, it happens a lot. The extension is activated when its icon is clicked from a tab where a YouTube video is being played. Once clicked, full screen mode is activated and the current window will only show the YouTube video's frame; a pop-up that contains a color palette will appear too (second screenshot). This provides different ways to select the color for the page's background. Also, It can activate a mode where the color will be set to the video's current predominant one dynamically. These functions are shown in the linked video: https://www.youtube.com/watch?v=gUc8nfeJWoU. This extension doesn't emulate an Ambilight technology. If you're looking for something like this, I recommend you the following extension, that provides really professional and pretty results: YouTube Ambilight, by Wezelkrozum (https://chrome.google.com/webstore/detail/youtube-ambilight/paponcgjfojgemddooebbgniglhkajkj). FYI: Extensions are not activated automatically when they are installed. This extension, like many others you have tried probably, starts working on all the corresponding tabs at the right moment it is installed, but this is not the default behaviour. Take in mind that if you install an extension sometime and it doesn't work on the tabs you have already open, you may need to refresh those tabs with F5 key or by clicking on the reload button located in the browser's top left corner. Code: https://github.com/jmt-chromeextensions/YouTubeOnlyVideo These tools make the extension work: —jBox, https://stephanwagner.me/jBox/demo/draggable-popup-windows (https://github.com/StephanWagner/jBox) —Spectrum, https://seballot.github.io/spectrum (https://github.com/seballot/spectrum) —Color Thief, https://lokeshdhakar.com/projects/color-thief (https://github.com/lokesh/color-thief)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cdckijfilopabmdcmgilmafjgkmfnphc |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-only-video/cdckijfilopabmdcmgilmafjgkmfnphc |
Mô tả | Have a private moment with your favourite video. |
Kích Thước Tệp | 195 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 2.0.0.6 |
Cập Nhật Lần Cuối | 2022-10-30 |
Ngày Phát Hành | 2020-06-23 |
Nhà Phát Triển | jmt |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jmt-chromeextensions/YouTubeOnlyVideo |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Only Video", "short_name": "YouTubeOnlyVideo", "version": "2.0.0.6", "description": "Have a private moment with your favourite video.", "icons": { "16": "extension_icons\/youtubeonlyvideo-16.png", "32": "extension_icons\/youtubeonlyvideo-32.png", "48": "extension_icons\/youtubeonlyvideo-48.png", "128": "extension_icons\/youtubeonlyvideo-128.png" }, "browser_action": { "default_title": "\ud83d\udd34 \u25b6 \u26ab" }, "background": { "scripts": [ "background_scripts\/initialize_extension.js", "background_scripts\/ext_button_clicked.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "tools\/jbox\/jBox.all.css", "tools\/spectrum\/spectrum.css" ], "js": [ "jquery\/jquery-3.4.1.min.js", "jquery\/jquery-ui.min.js", "tools\/jbox\/jBox.all.min.js", "tools\/spectrum\/spectrum.js", "tools\/color-thief\/color-thief.min.js", "icons\/buttons_icons.js", "content_scripts\/youtube_only_video.js" ] } ], "permissions": [ "*:\/\/*\/*", "storage", "tabs" ] } |