Youtube Playback Speed Control

Control speed of the youtube playback using keyboard. Press '+' to increase and '-' to decrease the playback speed.

Youtube Playback Speed Control란 무엇입니까?

Youtube Playback Speed Control은(는) shrestha.pujan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control speed of the youtube playback using keyboard. Press '+' to increase and '-' to decrease the playback speed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Youtube Playback Speed Control 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        [ Added functionality for the extension to work with all html5 videos. If you are having issue with videos other than youtube, feel free to disable it from settings]

Youtube playback speed increase or decrease is just a mouse click or keyboard button away. Get more out of Youtube and control speed of youtube video easily either by clicking the speed overlay button on the top right hand corner or just keyboard button '+' and '-'. Keyboard button are configurable and if you want to use different key, you can change this default keys from settings tab. 

With HTML5 Video playback on YouTube, you can speed up and slow down the currently watching videos. I loved this feature. But still it was too many mouse clicks for me. So, this extension was created to control the playback speed using keyboard. Press '+' to increase the playback speed and '-' to decrease the playback speed. If '+' and '-' keys are already used by other extension or you want to use different key, you can change this default keys from settings tab.

This extension even works for the HTML5 YouTube player embedded in other website. Make sure that the player is in focus. A website can embed multiple YouTube player and the keyboard shortcuts will effect the currently playing one.

Everything works no change needed. Please check extension options for more setting options. You can change playback rate increment from default 0.25 to any desired increment. 

Note: 
- The control may not appear the first time the extension is installed or updated. Refreshing the page should make it work.
- Close the setting page after making changes for the extension to function properly.

★ YPSC - Version 0.0.13
- Allow the extension to work with all html5 video. Added option to disable it if needed.
- Updated Bootstrap & Jquery

★ YPSC - Version 0.0.12
- Fixed a issue with playback button remaining on full screen even with FadeInFadeOut option.

★ YPSC - Version 0.0.11
- Fixed a bug that breaks the playback button display when switching full screen and back.

★ YPSC - Version 0.0.10
- Fixed a major bug of playback button not showing up sometimes.

★ YPSC - Version 0.0.9
- Updated to Manifest v3 required by Extension development

★ YPSC - Version 0.0.8
- Added option to hide setting button

★ YPSC  - Version 0.0.7
- Removed webRequest, activeTab permission.
- Easy access to setting page.
- Changes to comply with chrome web store.

★ YPSC  - Version 0.0.6
- Removed the need to access to full browser history.
- Fixed the shortcut assigned for speed up and down are not taken into account and reset to "0" issue.
- Added more control over position of playback rate increase/decrease button. Added TopLeft, TopMiddle, TopRight, BottomLeft, BottomMiddle, BottomRight option for position.
- Fixed the extension overlay from preventing "press x to close" when in miniplayer mode.
- Fixed hotkeys triggering when typing in comments.
- Added option to view time saved using this extension in option page.

★ YPSC  - Version 0.0.5
- Added an option to disable Shift+MouseScroll combination.
- Shows the speed control for 300 millisecond when the speed is changed.

★ YPSC  - Version 0.0.4
- Added a reset playback speed to 1x feature. By default it's '*', but user can change. Clicking the playback rate display also reset to 1x.
- Added increase or decrease of playback speed using Shift+MouseScroll combination.
- Added 'Up Arrow' and 'Down Arrow' to key options (Request from user).

★ YPSC  - Version 0.0.3
- Made extension more stable. The extension successfully loads every time now (unlike its predecessor where CTRL+F5 was needed sometime)
- Fixed the bug with playlist not advancing to next video.
- Fixed the bug of comments not loading sometime.
- Made the extension work with embedded videos almost all the time.
- Supports user defined playback rate increment that user can set from settings.
- Added more speed options. Supports higher playback rate. Note: Sound will not work for higher than 4x.

★ YPSC  - Version 0.0.2
- Updated to a user friendly display of the playback rate and added increase/decrease button.
- Fixed the bug of '+' and '-' buttons located next to backspace not working. Only the '+' and '-' buttons of Numeric keypad was working.
- Added various mode of playback rate display (Always, Hide/Show, Simple and None).

★ YPSC  - Version 0.0.1
- Basic functionality of changing youtube playback rate using keyboard.                    

확장 프로그램 기본 정보

이름 Youtube Playback Speed Control Youtube Playback Speed Control
ID hdannnflhlmdablckfkjpleikpphncik
공식 URL https://chromewebstore.google.com/detail/youtube-playback-speed-co/hdannnflhlmdablckfkjpleikpphncik
설명 Control speed of the youtube playback using keyboard. Press '+' to increase and '-' to decrease the playback speed.
파일 크기 719 KB
설치 횟수 165,649
현재 버전 0.0.13
최근 업데이트 2023-01-13
출시 날짜 2020-05-25
평점 4.66/5 총 2153 개의 평점
개발자 shrestha.pujan
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Playback Speed Control",
    "version": "0.0.13",
    "manifest_version": 3,
    "description": "Control speed of the youtube playback using keyboard. Press '+' to increase and '-' to decrease the playback speed.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "src\/option\/options.html",
    "background": {
        "service_worker": "src\/background.js"
    },
    "action": {
        "default_title": "Control speed of the youtube playback using keyboard or single mouse click.",
        "default_icon": {
            "19": "icons\/icon19.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}