YouTube Hotkeys

Your YouTube Hotkeys for play, pause, play next video and repeat.

YouTube Hotkeys là gì?

YouTube Hotkeys là một tiện ích mở rộng Chrome được phát triển bởi Giovani Silva, và tính năng chính của nó là "Your YouTube Hotkeys for play, pause, play next video and repeat.".

Ả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 YouTube Hotkeys

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

                        This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser!

You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not.

Default Keyboard shortcuts:

Next Video     : Alt+Shift+Period
Play/Pause     : Alt+Shift+P
Previous Video : Alt+Shift+Comma
Repeat Video   : Alt+Shift+R

To configure go to 
chrome://extensions/configureCommands                    

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

Tên YouTube Hotkeys YouTube Hotkeys
ID nikecddgokknoehjljdkhkilicpcacmo
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo
Mô tả Your YouTube Hotkeys for play, pause, play next video and repeat.
Kích Thước Tệp 75.94 KB
Số Lần Cài Đặt 785
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-04-06
Ngày Phát Hành 2018-04-06
Đánh Giá 4.53/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Giovani Silva
Email [email protected]
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 Hotkeys",
    "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.",
    "version": "1.1",
    "incognito": "split",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "next": {
            "description": "Next track",
            "suggested_key": "Alt+Shift+Period"
        },
        "play-pause": {
            "description": "Play\/Pause",
            "suggested_key": "Alt+Shift+P"
        },
        "previous": {
            "description": "Previous track",
            "suggested_key": "Alt+Shift+Comma"
        },
        "repeat": {
            "description": "Repeat",
            "suggested_key": "Alt+Shift+R"
        }
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "script.js",
        "content.js"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "contentSettings"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    }
}