RightSpeed for YouTube

Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.

RightSpeed for YouTube란 무엇입니까?

RightSpeed for YouTube은(는) d4nshields에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed."입니다.

확장 프로그램 스크린샷

screenshot

RightSpeed for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        While watching YouTube videos, you may change the speed of playback via a slider on the left side of the video window.

Videos may be sped up to 4 times normal speed, and slowed down to half normal speed.   Great for enhancing the detail of difficult technical tutorials, speed-learning, and even cramming for exams.

RightSpeed is an essential for the learner's toolbox.  Watch lectures at double speed, then switch to slow-motion for the complicated bits.  Once you've appreciated the advantages of tuning video to the rate of your auditory perception, it's a feature you will favour, so please rate this extension highly and share it with your friends.                    

확장 프로그램 기본 정보

이름 RightSpeed for YouTube RightSpeed for YouTube
ID flibmeaimaamdoldglmbcooncgjedblo
공식 URL https://chrome.google.com/webstore/detail/rightspeed-for-youtube/flibmeaimaamdoldglmbcooncgjedblo
설명 Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.
파일 크기 271 KB
설치 횟수 380
현재 버전 0.0.4.3
최근 업데이트 2019-04-06
출시 날짜 2019-04-06
평점 4.13/5 총 31 개의 평점
개발자 d4nshields
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/d4nshields/rightspeed
도움말 페이지 URL https://github.com/d4nshields/rightspeed/blob/master/privacy-policy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RightSpeed for YouTube",
    "short_name": "rightspeed",
    "description": "Great tool for easily adjusting the speed of YouTube videos, at YOUR speed, the RIGHT speed.",
    "version": "0.0.4.3",
    "icons": {
        "16": "stopwatch-small-128.png",
        "19": "stopwatch-small-128.png",
        "48": "stopwatch-small-128.png",
        "128": "stopwatch-small-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.js",
                "ga-config.js",
                "myscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "stopwatch-small-128.png",
            "19": "stopwatch-small-128.png",
            "48": "stopwatch-small-128.png",
            "128": "stopwatch-small-128.png"
        },
        "default_title": " RightSpeed for YouTube",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "cookies",
        "*:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        "BTTF.ttf",
        "stop-watch-icon.png",
        "background.js",
        "jquery-ui.css",
        "spdr-styles.css",
        "jquery.min.js",
        "jquery-ui.js",
        "myscript.js",
        "commLink.js",
        "stopwatch-top.png",
        "button_instant_replay.png",
        "images\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}