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. 扩展基本信息
| 名称 | |
| 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"
]
} | |