Chrome playback speed controller

Controls the playback speed of your youtube or udemy video

Chrome playback speed controller란 무엇입니까?

Chrome playback speed controller은(는) Jean Sidharta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Controls the playback speed of your youtube or udemy video"입니다.

확장 프로그램 스크린샷

screenshot

Chrome playback speed controller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If the current tab is not a Youtube or Udemy video, the extension icon will appear grayed-out and will be disabled. Otherwise, clicking it will display a pop-up with a number, a slider and a button named "reset":

- The number displays the current video speed. It will change according to the slider. If you desire a specific speed, you may manually type the number you want. It's maximum precision, however is of 0.1. More decimal numbers will be rounded.

- The slider controls the video speed, going from 0.0 to 15.9

- The reset button will set the video speed to 1.0                    

확장 프로그램 기본 정보

이름 Chrome playback speed controller Chrome playback speed controller
ID jjapmdbeieeoeaebndobpmjfckbimhon
공식 URL https://chromewebstore.google.com/detail/chrome-playback-speed-con/jjapmdbeieeoeaebndobpmjfckbimhon
설명 Controls the playback speed of your youtube or udemy video
파일 크기 62.85 KB
설치 횟수 891
현재 버전 1.2.1
최근 업데이트 2019-06-05
출시 날짜 2019-06-04
평점 3.71/5 총 7 개의 평점
개발자 Jean Sidharta
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Jeansidharta/Youtube-Playback-speed-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome playback speed controller",
    "description": "Controls the playback speed of your youtube or udemy video",
    "version": "1.2.1",
    "author": "Jean Sidharta Rocha Guzman",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "injectedYoutube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.udemy.com\/*"
            ],
            "js": [
                "injectedUdemy.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "24": "images\/logo24.png",
            "32": "images\/logo32.png",
            "128": "images\/logo128.png"
        },
        "default_title": "Youtube playback speed",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/logo16.png",
        "24": "images\/logo24.png",
        "32": "images\/logo32.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ]
}