YouTube Television Mode

Watch YouTube endlessly as if it was a real TV station.

Что такое YouTube Television Mode?

YouTube Television Mode - это расширение Chrome, разработанное Jason Gauci, и его основная функция - "Watch YouTube endlessly as if it was a real TV station.".

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

Скачайте файлы расширений YouTube Television Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This Chrome extension automatically follows suggested videos (the videos on the right-hand side of YouTube) when the video you are watching finishes.  The extension keeps track of what you have already watched so you never watch the same video twice.                    

Основная информация о расширении

Название YouTube Television Mode YouTube Television Mode
ID kleeleapbddibpbhbmdplacclglnpndc
Официальный URL https://chrome.google.com/webstore/detail/youtube-television-mode/kleeleapbddibpbhbmdplacclglnpndc
Описание Watch YouTube endlessly as if it was a real TV station.
Размер файла 74.37 KB
Количество установок 119
Текущая Версия 0.1
Последнее Обновление 2014-02-23
Дата публикации 2014-02-23
Рейтинг 3.00/5 Всего 3 оценок
Разработчик Jason Gauci
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Television Mode",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Watch YouTube endlessly as if it was a real TV station.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "tubeKeys.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        "inject.js",
        "jquery.min.js"
    ]
}