YTex YouTube Extension

Adds more controls to youtube html5 player

Что такое YTex YouTube Extension?

YTex YouTube Extension - это расширение Chrome, разработанное SeKa, и его основная функция - "Adds more controls to youtube html5 player".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YTex YouTube Extension

Скачайте файлы расширений 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
Электронная почта [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"
        }
    ]
}