YouTube Distraction Killer
Remove distracting elements from YouTube's layout
YouTube Distraction Killerとは何ですか?
YouTube Distraction Killerはniziolequeによって開発されたChromeの拡張機能で、その主な機能は「Remove distracting elements from YouTube's layout」です。
拡張機能のスクリーンショット
YouTube Distraction Killer拡張機能のCRXファイルをダウンロード
YouTube Distraction Killer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Do you find yourself watching cute kitten videos instead of educational content all the time? Get rid of all the reccomendations, suggestions, comments and other tempting buttons! Easily choose what is hidden using the options menu! If you experience any issues, please feel free to email me with a bug report.
拡張機能の基本情報
名前 | YouTube Distraction Killer |
ID | pahjidceabkifggkmokpmlmhoaiflaeh |
公式URL | https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh |
説明 | Remove distracting elements from YouTube's layout |
ファイルサイズ | 28.3 KB |
インストール数 | 153 |
現在のバージョン | 1.3 |
最終更新日 | 2022-04-19 |
公開日 | 2022-04-19 |
評価 | 4.75/5 合計 4 レビュー |
開発者 | nizioleque |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.3", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false } } |