Controls for Youtube

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

O que é Controls for Youtube?

Controls for Youtube é uma extensão do Chrome desenvolvida por rehfeldchris, e sua principal característica é "Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Controls for Youtube

Baixe arquivos de extensão Controls for Youtube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Controls for Youtube Controls for Youtube
ID doocmbmlcnbbdohogchldhlikjpndpng
URL Oficial https://chromewebstore.google.com/detail/controls-for-youtube/doocmbmlcnbbdohogchldhlikjpndpng
Descrição Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.
Tamanho do Arquivo 54.35 KB
Contagem de Instalações 9,840
Versão Atual 1.35
Última Atualização 2021-08-31
Data de Publicação 2018-11-24
Classificação 4.56/5 Total de 101 Avaliações
Desenvolvedor rehfeldchris
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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": []
}