TV for Youtube
Makes youtube.com/tv not redirect
Что такое TV for Youtube?
TV for Youtube - это расширение Chrome, разработанное tberghuis, и его основная функция - "Makes youtube.com/tv not redirect".
Снимки экрана расширения
Скачать файл CRX расширения TV for Youtube
Скачайте файлы расширений TV for Youtube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Chrome extension that allows the viewing of the TV interface through the browser. Features a control to allow for fullscreen mode. Replaces User-Agent request header so that google will reply with the old working leanback interface.
Основная информация о расширении
Название | TV for Youtube |
ID | mbkenkpbobncoehadfogibjlhnaopcpb |
Официальный URL | https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb |
Описание | Makes youtube.com/tv not redirect |
Размер файла | 101 KB |
Количество установок | 1,636 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2021-01-19 |
Дата публикации | 2021-01-19 |
Рейтинг | 3.50/5 Всего 2 оценок |
Разработчик | tberghuis |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/tberghuis/tv-for-youtube |
URL страницы помощи | https://github.com/tberghuis/tv-for-youtube/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TV for Youtube", "description": "Makes youtube.com\/tv not redirect", "version": "0.0.3", "manifest_version": 2, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/www.youtube.com\/tv" ], "content_scripts": [ { "js": [ "content.js" ], "css": [ "fontawesome\/all.css", "content.css" ], "matches": [ "https:\/\/www.youtube.com\/tv" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "fullscreen.png", "fontawesome\/webfonts\/fa-solid-900.woff2" ], "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" } } |