Controls for Youtube

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

Co to jest Controls for Youtube?

Controls for Youtube to rozszerzenie Chrome opracowane przez rehfeldchris, a jego główną funkcją jest „Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Controls for Youtube

Pobierz pliki rozszerzeń Controls for Youtube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Controls for Youtube Controls for Youtube
ID doocmbmlcnbbdohogchldhlikjpndpng
Oficjalny URL https://chromewebstore.google.com/detail/controls-for-youtube/doocmbmlcnbbdohogchldhlikjpndpng
Opis Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.
Rozmiar pliku 54.35 KB
Liczba instalacji 9,840
Aktualna Wersja 1.35
Ostatnia Aktualizacja 2021-08-31
Data Publikacji 2018-11-24
Ocena 4.56/5 Łącznie 101 Oceny
Deweloper rehfeldchris
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": []
}