YouTube On-screen Hotkeys

On screen hotkeys for youtube, with ad fast-forwarding capabilities

YouTube On-screen Hotkeys란 무엇입니까?

YouTube On-screen Hotkeys은(는) eric.x.dev01에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "On screen hotkeys for youtube, with ad fast-forwarding capabilities"입니다.

확장 프로그램 스크린샷

screenshot

YouTube On-screen Hotkeys 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        On-screen hotkeys for YouTube. Enables fast forwarding YouTube ads and videos by simple clicking the top right portion of the video. Also enables skipping and backtracking 10 seconds with cursor.                    

확장 프로그램 기본 정보

이름 YouTube On-screen Hotkeys YouTube On-screen Hotkeys
ID pjignmjgalcnihmjmkaliemdlagnhfnn
공식 URL https://chromewebstore.google.com/detail/youtube-on-screen-hotkeys/pjignmjgalcnihmjmkaliemdlagnhfnn
설명 On screen hotkeys for youtube, with ad fast-forwarding capabilities
파일 크기 18.37 KB
설치 횟수 115
현재 버전 0.0.7
최근 업데이트 2021-04-29
출시 날짜 2020-04-01
평점 5.00/5 총 3 개의 평점
개발자 eric.x.dev01
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/ff48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/",
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "On screen hotkeys for youtube, with ad fast-forwarding capabilities",
    "icons": {
        "128": "images\/ff128.png",
        "16": "images\/ff16.png",
        "32": "images\/ff32.png",
        "48": "images\/ff48.png"
    },
    "manifest_version": 2,
    "name": "YouTube On-screen Hotkeys",
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "https:\/\/www.youtube.com\/",
        "https:\/\/www.youtube.com\/*"
    ],
    "version": "0.0.7"
}