Controls for YouTube™ Shorts

Add controls for videos of YouTube™ shorts, including shortcuts!

Controls for YouTube™ Shorts là gì?

Controls for YouTube™ Shorts là một tiện ích mở rộng Chrome được phát triển bởi edoan, và tính năng chính của nó là "Add controls for videos of YouTube™ shorts, including shortcuts!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Controls for YouTube™ Shorts

Tải xuống các tệp mở rộng Controls for YouTube™ Shorts 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

                        Add a control bar below videos from YouTube Shorts.

Options:
- Always visible controls: it's not necessary to hover over the video for the controls to appear.
- Hide title and channel: when not hovering over the video, this option will hide the video information that overlays the video.
- Control volume with Arrow Up/Down: allow you to control the volume with arrow keys without holding shift/cmd, it is optional, as many users use it to scroll between shorts.

Keyboard shortcuts:
- Left/Right arrow keys to backward/forward the video by 5 seconds.
- Shift/Cmd + Up/Down arrow keys to increase/decrease the volume.
- "M" to mute/unmute the video.
- Spacebar to pause/resume the video.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Controls for YouTube™ Shorts Controls for YouTube™ Shorts
ID daocpklojfnjgomjaemhhibodkpcjlpe
URL Chính Thức https://chromewebstore.google.com/detail/controls-for-youtube-shor/daocpklojfnjgomjaemhhibodkpcjlpe
Mô tả Add controls for videos of YouTube™ shorts, including shortcuts!
Kích Thước Tệp 264 KB
Số Lần Cài Đặt 4,011
Phiên Bản Hiện Tại 1.3.45
Cập Nhật Lần Cuối 2024-01-28
Ngày Phát Hành 2023-06-22
Đánh Giá 4.79/5 Tổng số 34 Đánh Giá
Nhà Phát Triển edoan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Zennos/controls-for-yt-shorts
Ngôn Ngữ Được Hỗ Trợ en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_AppName__",
    "version": "1.3.45",
    "manifest_version": 3,
    "description": "__MSG_AppDescription__",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/content_script.css"
            ],
            "js": [
                "libs\/mutation_summary.js",
                "libs\/fluidplayer.min.js",
                "js\/observer.js",
                "js\/utils.js",
                "js\/content_script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/icons\/normal\/icon-16.png",
            "48": "images\/icons\/normal\/icon-48.png",
            "32": "images\/icons\/normal\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icons\/normal\/icon-16.png",
        "48": "images\/icons\/normal\/icon-48.png",
        "128": "images\/icons\/normal\/icon-128.png"
    }
}