Youtube New Layout
Gives you access to the new Youtube Layout.
Youtube New Layoutとは何ですか?
Youtube New Layoutはjesseizeboudによって開発されたChromeの拡張機能で、その主な機能は「Gives you access to the new Youtube Layout.」です。
拡張機能のスクリーンショット
Youtube New Layout拡張機能のCRXファイルをダウンロード
Youtube New Layout拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Places a cookie in your browser to get access to the new Youtube New Layout. Including Dark Mode
拡張機能の基本情報
名前 | |
ID | hbmeplfnmccnihlidhggppjkefakmepd |
公式URL | https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd |
説明 | Gives you access to the new Youtube Layout. |
ファイルサイズ | 92.49 KB |
インストール数 | 496 |
現在のバージョン | 1.0 |
最終更新日 | 2017-04-23 |
公開日 | 2017-04-23 |
評価 | 4.00/5 合計 4 レビュー |
開発者 | jesseizeboud |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube New Layout", "version": "1.0", "description": "Gives you access to the new Youtube Layout.", "browser_action": { "default_icon": "icon-128.png" }, "permissions": [ "activeTab", "tabs", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "inject.js" ] }, { "run_at": "document_end", "matches": [ "https:\/\/youtube.com\/*" ], "js": [ "inject.js" ] }, { "run_at": "document_end", "matches": [ "http:\/\/youtube.com\/*" ], "js": [ "inject.js" ] }, { "run_at": "document_end", "matches": [ "https:\/\/youtube.com\/*" ], "js": [ "inject.js" ] } ], "manifest_version": 2 } |