Video Play Speed Controller

Smoothly slide to adjust video playback speed

Video Play Speed Controller란 무엇입니까?

Video Play Speed Controller은(는) Mel Bro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smoothly slide to adjust video playback speed"입니다.

확장 프로그램 스크린샷

screenshot

Video Play Speed Controller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        [Video tutorial]
https://twitter.com/WWG1WWG/status/1208024045549060096

[Purpose]
Now we can only watch live videos of Miles Kwok (Guo Wengui) 😎 on Livestream which interestingly does not provide YouTube-like playback speed adjustment 🙄. For me, a [996](https://github.com/996icu/996.ICU/blob/master/README.md) programmer, 2x playback speed is a must as I don't have much time 😔.

[Features]
* Up to 10x playback speed (useful to skim the ADs 😉).
* Support all the websites including Livestream and YouTube.
* Support adjustments of all the videos on the same page (seems useless 🤣).

✊✊✊ Everything is just beginning 🙏🏻🙏🏻🙏🏻                    

확장 프로그램 기본 정보

이름 Video Play Speed Controller Video Play Speed Controller
ID oeeeoehjmbecilllolfoikdabhapgoac
공식 URL https://chrome.google.com/webstore/detail/video-play-speed-controll/oeeeoehjmbecilllolfoikdabhapgoac
설명 Smoothly slide to adjust video playback speed
파일 크기 144 KB
설치 횟수 10,000
현재 버전 1.1.0
최근 업데이트 2020-03-07
출시 날짜 2020-03-07
평점 4.32/5 총 19 개의 평점
개발자 Mel Bro
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Pangu2020together/video-play-speed-extension
개인정보 보호 정책 페이지 URL https://github.com/Pangu2020together/video-play-speed-extension
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "homepage_url": "https:\/\/github.com\/Pangu2020together\/video-play-speed-extension",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        ""
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "19": "icons\/19.png",
            "38": "icons\/38.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'  https:\/\/ssl.google-analytics.com; object-src 'self'",
    "version": "1.1.0"
}