Youtube Distraction Filter
Remove distracting elements from youtube
Youtube Distraction Filterとは何ですか?
Youtube Distraction FilterはTom Headifenによって開発されたChromeの拡張機能で、その主な機能は「Remove distracting elements from youtube」です。
拡張機能のスクリーンショット
Youtube Distraction Filter拡張機能のCRXファイルをダウンロード
Youtube Distraction Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This Chrome extension by default will remove the comment section and related video section whenever you are watching a video. This helps users not get distracted by participating in pointless conversation or getting fooled by click bait videos. Known bugs: -If you navigate to a video from within the youtube website the filter will not kick in. It will only work if you navigate straight to the video from a different website/link. Change Log: September 4th 2017: -Youtube recently had an update, changed fields names that are targeted to be filtered to keep up with these changes. August 5th 2019 -Fixed bug where related videos wouldn't hide.
拡張機能の基本情報
名前 | Youtube Distraction Filter |
ID | bcbpflcbmnnpdhjmfblndddmoimlimbf |
公式URL | https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf |
説明 | Remove distracting elements from youtube |
ファイルサイズ | 7.3 KB |
インストール数 | 99 |
現在のバージョン | 1.0.2 |
最終更新日 | 2019-08-06 |
公開日 | 2019-08-05 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Tom Headifen |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tomheadifen/youtube-distraction-filter |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Distraction Filter", "description": "Remove distracting elements from youtube", "version": "1.0.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "eye-icon.png", "default_title": "Youtube Distraction Filter", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube-distraction-filter.js" ], "run_at": "document_end" } ], "permissions": [ "declarativeContent", "storage" ] } |