Simpli Youtube
Simplifies the Youtube viewing experience
Simpli Youtubeとは何ですか?
Simpli Youtubeはtldralgosによって開発されたChromeの拡張機能で、その主な機能は「Simplifies the Youtube viewing experience」です。
拡張機能のスクリーンショット
Simpli Youtube拡張機能のCRXファイルをダウンロード
Simpli Youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Remove YouTube recomendations , comments, and more to simplify your Youtube experience. With all the control given to the user remove as little or as much as you want. This extension enables you to reduce distractions and take control of your time while browsing YouTube in the following ways: - Hide comments - Simplify the navigation drawer - Hide recommended video types - Hide video information on videos - Along with many more fully customizable features. The options are also heavily customizable, so you can create exactly the experience you want. So download and enjoy your simplified version of YouTube.
拡張機能の基本情報
名前 | Simpli Youtube |
ID | obfdcjijgiooldbhohidceamnppmkail |
公式URL | https://chromewebstore.google.com/detail/simpli-youtube/obfdcjijgiooldbhohidceamnppmkail |
説明 | Simplifies the Youtube viewing experience |
ファイルサイズ | 16.79 KB |
インストール数 | 72 |
現在のバージョン | 0.1.0 |
最終更新日 | 2021-01-07 |
公開日 | 2021-01-07 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | tldralgos |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simpli Youtube", "description": "Simplifies the Youtube viewing experience", "version": "0.1.0", "permissions": [ "*:\/\/www.youtube.com\/*", "activeTab", "storage" ], "browser_action": { "default_popup": "mainpop.html", "default_title": "Youtube Rabbit Hole", "default_icon": { "16": "image\/logo_16.png", "32": "image\/logo_32.png", "48": "image\/logo_48.png", "128": "image\/logo_128.png" } }, "icons": { "16": "image\/logo_16.png", "32": "image\/logo_32.png", "48": "image\/logo_48.png", "128": "image\/logo_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "all_frames": true, "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |