Ctrl+Z for YouTube

Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!

Ctrl+Z for YouTube란 무엇입니까?

Ctrl+Z for YouTube은(는) Likbjorn's Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!"입니다.

확장 프로그램 스크린샷

screenshot

Ctrl+Z for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ctrl+Z for YouTube extension allows you to rewind your video back after accidental rewind. Press Ctrl+Z to do so. You can specify other hotkey. The source code is available here: https://github.com/Likbjorn/ytcancel .

Update 1.0.2
- Add redo feature.

Update 1.0.3
- Fix buttons on control panel were not shown.                    

확장 프로그램 기본 정보

이름 Ctrl+Z for YouTube Ctrl+Z for YouTube
ID goodnjebkdapcafcdipcnlahdppddahg
공식 URL https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg
설명 Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
파일 크기 13.65 KB
설치 횟수 65
현재 버전 1.0.3
최근 업데이트 2020-08-10
출시 날짜 2020-05-24
평점 4.50/5 총 4 개의 평점
개발자 Likbjorn's Software
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl+Z for YouTube",
    "version": "1.0.3",
    "description": "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "128": "icon128.png"
    }
}