Controls for Youtube

Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.

Controls for Youtube là gì?

Controls for Youtube là một tiện ích mở rộng Chrome được phát triển bởi rehfeldchris, và tính năng chính của nó là "Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.".

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

screenshot
screenshot

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

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

                        Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.

====================================
What This Extension Does
====================================

This tiny and efficient extension helps you easily seek forwards and backwards in Youtube™ videos. If you ever watch long videos and want to seek backwards a little bit so you can see something again, but get frustrated trying to drag that tiny slider just the right amount, this extension is for you!

This extension will add keyboard shortcuts which let you quickly seek ahead or back by either 3 or 15 seconds (configurable). Additionally, it can also optionally add new buttons to the player which you can click to seek ahead or back.

====================================
Usage
====================================

1) Load any web page that contains a YT-video
2) Click the video to make it play
3) The extension will automatically detect the video and add the new seek buttons to it
4) To seek forwards or backwards, you can either click the buttons, or use the Keyboard Controls

*Note - like many other extensions, any webpages you loaded before installing the extension must be reloaded before the extension will work.

List of Keycombos
http://rehfeld.us/browser-extensions/controls-for-youtube/keyboard-controls

For example, it's really easy to hold your ctrl key and then press your left arrow key twice to quickly go back 6 seconds!

You can configure how far ahead and back each key takes you via the extension config page. Also, if you don't like the buttons that get added to the player, you can disable some or all of them. To see the config page, click the extension icon on the top-right of your browser, then select "options", just like on any other extension. Alternatively, goto the chrome://extensions url, click the "Details" btn for this extension, then click "Extension Options".

TIP: You can skip through some advertisements by just fast forwarding! Try using the "Seek forward to end" keycombo. You can also rewind the ad, if you like.

Non-Obvious Feature:
Note that the keyboard controls work properly even when you're on a non-youtube.com website which embeds the YT-video into their webpage. When using keycombos, you don't need to give the video "mouse focus" by clicking on it, which allows you to freely interact with the parent web page without worrying about losing mouse focus due to clicking something else. This can be handy, for example, if you've scrolled to the bottom of the page to read comments, and suddenly wish to rewind or pause the video without having to scroll back to the top - just use the keys. While native YT-videos do have their own keycombos to pause the video (the space bar), it only works on non-youtube.com pages when the video currently has mouse focus. This extension offers its own pause control (Ctrl + SpaceBar) which works without the video needing focus. The same goes for all the keycombos - they all work without needing the player to have focus! The browser tab does need focus, however.

Limitation:
-The GUI buttons can only be added to the player if there's enough width - small players may not be wide enough. If you maximize the player, they should show up, or you can always just use the keyboard controls.

====================================
Legal
====================================

Youtube™ is a registered trademark. This extension was developed independently, by someone who is not related or affiliated with them, without any help or endorsement from them.

====================================
Privacy
====================================

http://rehfeld.us/browser-extensions/controls-for-youtube/privacy-policy

====================================
Changelog
====================================

http://rehfeld.us/browser-extensions/controls-for-youtube/changelog                    

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

Tên Controls for Youtube Controls for Youtube
ID doocmbmlcnbbdohogchldhlikjpndpng
URL Chính Thức https://chromewebstore.google.com/detail/controls-for-youtube/doocmbmlcnbbdohogchldhlikjpndpng
Mô tả Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.
Kích Thước Tệp 54.35 KB
Số Lần Cài Đặt 9,840
Phiên Bản Hiện Tại 1.35
Cập Nhật Lần Cuối 2021-08-31
Ngày Phát Hành 2018-11-24
Đánh Giá 4.56/5 Tổng số 101 Đánh Giá
Nhà Phát Triển rehfeldchris
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,
    "author": "Chris Rehfeld [email protected]",
    "homepage_url": "http:\/\/rehfeld.us\/browser-extensions\/controls-for-youtube",
    "name": "Controls for Youtube",
    "short_name": "Ctrls4Utube",
    "description": "Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.",
    "version": "1.35",
    "extNameCode": "yts",
    "minimum_chrome_version": "41",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "yts-controls.css"
            ],
            "js": [
                "yts-script-injector.js"
            ]
        }
    ],
    "background": {
        "page": "yts-background.html",
        "persistent": false
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "ChromeStorageUpdateSynchronizer.mjs",
        "yts-TimePositionMemory.mjs",
        "yts-controls.js",
        "yts-util.mjs",
        "saved-settings-misc.mjs",
        "icons\/circ-seek.svg",
        "icons\/rect-seek.png"
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/Actions-go-previous-icon-16.png",
        "48": "icons\/Actions-go-previous-icon-48.png",
        "128": "icons\/Actions-go-previous-icon-128.png"
    },
    "commands": []
}