YTex YouTube Extension

Adds more controls to youtube html5 player

YTex YouTube Extension란 무엇입니까?

YTex YouTube Extension은(는) SeKa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds more controls to youtube html5 player"입니다.

확장 프로그램 스크린샷

screenshot

YTex YouTube Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Die Extension fügt dem HTML5 Player auf YouTube zwei weitere Buttons hinzu, mit denen man 10 Sekunden vor oder zurück springen kann.

The Extension adds two buttons to the YouTube control bar with which you can skip the next 10 seconds or rewind 10 seconds                    

확장 프로그램 기본 정보

이름 YTex YouTube Extension YTex YouTube Extension
ID mllojahkjeoinmhcinbcnkleeefdohbm
공식 URL https://chrome.google.com/webstore/detail/ytex-youtube-extension/mllojahkjeoinmhcinbcnkleeefdohbm
설명 Adds more controls to youtube html5 player
파일 크기 33.74 KB
설치 횟수 51
현재 버전 1.2
최근 업데이트 2020-07-08
출시 날짜 2017-09-18
평점 3.67/5 총 3 개의 평점
개발자 SeKa
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTex YouTube Extension",
    "description": "Adds more controls to youtube html5 player",
    "version": "1.2",
    "browser_action": {
        "default_icon": "ytex128.png"
    },
    "icons": {
        "16": "ytex16.png",
        "48": "ytex48.png",
        "128": "ytex128.png"
    },
    "web_accessible_resources": [
        "Forward.png",
        "Rewind.png"
    ],
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "ytex.css"
            ],
            "js": [
                "ytex.js"
            ],
            "run_at": "document_end"
        }
    ]
}