Controls for Youtube

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

Controls for Youtube란 무엇입니까?

Controls for Youtube은(는) rehfeldchris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Controls for Youtube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Controls for Youtube Controls for Youtube
ID doocmbmlcnbbdohogchldhlikjpndpng
공식 URL https://chromewebstore.google.com/detail/controls-for-youtube/doocmbmlcnbbdohogchldhlikjpndpng
설명 Quickly seek Youtube video playback forwards and backwards by either 3 or 15 seconds.
파일 크기 54.35 KB
설치 횟수 9,840
현재 버전 1.35
최근 업데이트 2021-08-31
출시 날짜 2018-11-24
평점 4.56/5 총 101 개의 평점
개발자 rehfeldchris
이메일 [email protected]
결제 유형 free
지원되는 언어 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": []
}