TV for Youtube
Makes youtube.com/tv not redirect
TV for Youtubeとは何ですか?
TV for Youtubeはtberghuisによって開発されたChromeの拡張機能で、その主な機能は「Makes youtube.com/tv not redirect」です。
拡張機能のスクリーンショット
TV for Youtube拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |