YT Gamify
A better YouTube Interface
YT Gamifyとは何ですか?
YT GamifyはMaximeによって開発されたChromeの拡張機能で、その主な機能は「A better YouTube Interface」です。
拡張機能のスクリーンショット
YT Gamify拡張機能のCRXファイルをダウンロード
YT Gamify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
YT Gamify allows you to apply the new YouTube Gaming Interface to classic YouTube links.
拡張機能の基本情報
名前 | |
ID | ngealcjkilfhmkilnoemhhcmjlcjfndb |
公式URL | https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb |
説明 | A better YouTube Interface |
ファイルサイズ | 14.78 KB |
インストール数 | 51 |
現在のバージョン | 1.4 |
最終更新日 | 2016-05-12 |
公開日 | 2016-05-11 |
評価 | 4.33/5 合計 6 レビュー |
開発者 | Maxime |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YT Gamify", "version": "1.4", "description": "A better YouTube Interface", "icons": { "48": "48.png", "128": "128.png" }, "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "script.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "browser_action": { "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": true } } |