Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
Youtube Untrendとは何ですか?
Youtube Untrendはdorian.grolauxによって開発されたChromeの拡張機能で、その主な機能は「This extension simply removes the 'Trending' tab on the Youtube home page.」です。
拡張機能のスクリーンショット
Youtube Untrend拡張機能のCRXファイルをダウンロード
Youtube Untrend拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Don't like this trending tab ? I don't either.
拡張機能の基本情報
名前 | |
ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
公式URL | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
説明 | This extension simply removes the 'Trending' tab on the Youtube home page. |
ファイルサイズ | 29.2 KB |
インストール数 | 21 |
現在のバージョン | 0.2 |
最終更新日 | 2016-01-10 |
公開日 | 2016-01-10 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | dorian.grolaux |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Untrend", "short_name": "Removes the 'Trending' tab on Youtube's home page", "version": "0.2", "description": "This extension simply removes the 'Trending' tab on the Youtube home page.", "permissions": [ "activeTab", "*:\/\/www.youtube.com\/" ], "icons": { "16": "icons\/yt_untrend16.png", "48": "icons\/yt_untrend48.png", "128": "icons\/yt_untrend128.png" }, "offline_enabled": true, "page_action": { "default_icon": { "16": "icons\/yt_untrend16.png", "48": "icons\/yt_untrend48.png" }, "default_title": "Youtube Untrend" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/", "*:\/\/www.youtube.com\/feed\/*" ], "js": [ "script.js" ] } ] } |