Youtube™ Controller
Control Youtube™ videos from any web page
Youtube™ Controller là gì?
Youtube™ Controller là một tiện ích mở rộng Chrome được phát triển bởi https://www.maroun-baydoun.com, và tính năng chính của nó là "Control Youtube™ videos from any web page".
Ả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™ Controller
Tải xuống các tệp mở rộng Youtube™ Controller 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
Play and pause Youtube™ videos from any other web page or even when Chrome is in the background. Up to two shortcuts can be set to control video playback. To set shortcuts for this extension, navigate to chrome://extensions/shortcuts
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube™ Controller |
ID | poalplpedjpddipkghmlhkmgbcnmecop |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-controller/poalplpedjpddipkghmlhkmgbcnmecop |
Mô tả | Control Youtube™ videos from any web page |
Kích Thước Tệp | 33.73 KB |
Số Lần Cài Đặt | 2,231 |
Phiên Bản Hiện Tại | 2.1.0 |
Cập Nhật Lần Cuối | 2021-07-25 |
Ngày Phát Hành | 2019-12-12 |
Đánh Giá | 4.75/5 Tổng số 51 Đánh Giá |
Nhà Phát Triển | https://www.maroun-baydoun.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/maroun-baydoun/youtube-controller-extension |
URL Trang Trợ Giúp | https://github.com/maroun-baydoun/youtube-controller-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "author": "Maroun Baydoun", "version": "2.1.0", "browser_action": { "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": false }, "icons": { "32": "icon-small.png", "64": "icon-medium.png", "128": "icon-large.png", "256": "icon.png" }, "permissions": [ "tabs", "*:\/\/*.youtube.com\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "commands": { "toggle-video-1": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "Toggle first video", "global": true }, "toggle-video-2": { "suggested_key": { "default": "Ctrl+Shift+2" }, "description": "Toggle second video", "global": true } } } |