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ファイルをダウンロード

YTex YouTube Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}