Easy Speed Drag YouTube

Adjust YouTube playback speed by clicking and dragging left or right on the video.

Easy Speed Drag YouTube란 무엇입니까?

Easy Speed Drag YouTube은(는) https://davidschiller.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adjust YouTube playback speed by clicking and dragging left or right on the video."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Easy Speed Drag YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NEW - This extension now automatically fast-forwards and skips YouTube ads for you. No more ads!

--
Fastest and most intuitive speed control for YouTube.

No more fiddling with menus. No need to hunt down hotkeys. Just click and hold anywhere on the video. Drag left or right to choose different speeds. Anywhere from 0.1x to 16x

Very helpful for skimming boring sections of videos, or selecting a custom speed to watch a video at.

--

HOW TO USE:

Click and hold anywhere on a video to play at 2x speed. Release the click to resume regular speed.

Drag the click to the right for faster speeds like 3x or 5x.

Drag to the left for slower speeds like 1.5x or 0.5x.

Drag all the way left to rewind.

Pick which speeds you want in the settings.

All speeds will revert back to normal speed when you release the click, UNLESS you drag the mouse vertically before releasing. If you do, the new speed will remain (the indicator will become bold to indicate that you've set the new speed to be persistent).                    

확장 프로그램 기본 정보

이름 Easy Speed Drag YouTube Easy Speed Drag YouTube
ID lmcggcabhocpfkbddekmconplfjmmgmn
공식 URL https://chromewebstore.google.com/detail/easy-speed-drag-youtube/lmcggcabhocpfkbddekmconplfjmmgmn
설명 Adjust YouTube playback speed by clicking and dragging left or right on the video.
파일 크기 260 KB
설치 횟수 106
현재 버전 3.33
최근 업데이트 2024-03-05
출시 날짜 2023-10-07
평점 5.00/5 총 5 개의 평점
개발자 https://davidschiller.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://davidschiller.net/easy-speed-drag-for-youtube.html
도움말 페이지 URL https://github.com/dschil138/easyspeed-for-youtube
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Easy Speed Drag YouTube",
    "version": "3.33",
    "description": "Adjust YouTube playback speed by clicking and dragging left or right on the video.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.youtube-nocookie.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "utils.js",
                "content.js",
                "handlers.js",
                "observers.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "64": "images\/64.png",
        "128": "images\/128.png"
    }
}