Hide Youtube Reccomendations
Remove YouTube homepage related videos feed, recommended sidebar, user comments. it is usefull to help you focus in your work
什么是Hide Youtube Reccomendations?
Hide Youtube Reccomendations是由https://hasan-naser.com开发的Chrome扩展程序,该扩展的主要功能是“Remove YouTube homepage related videos feed, recommended sidebar, user comments. it is usefull to help you focus in your work”。
扩展截图
下载Hide Youtube Reccomendations扩展crx文件
下载Hide Youtube Reccomendations扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A browser extension help you to focus in your work by removing YouTube recommended sidebar, user comments, homepage related videos feed,
hide youtube feeds
hide youtube recommended videos
hide notification 扩展基本信息
| 名称 | |
| ID | kehfeffkkeikicjiehddmbmabmakfdff |
| 官方URL | https://chromewebstore.google.com/detail/hide-youtube-reccomendati/kehfeffkkeikicjiehddmbmabmakfdff |
| 简介 | Remove YouTube homepage related videos feed, recommended sidebar, user comments. it is usefull to help you focus in your work |
| 文件大小 | 7.56 KB |
| 安装次数 | 215 |
| 当前版本 | 1.2 |
| 更新时间 | 2023-05-01 |
| 上架时间 | 2020-12-21 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | https://hasan-naser.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hide Youtube Reccomendations",
"version": "1.2",
"description": "Remove YouTube homepage related videos feed, recommended sidebar, user comments. it is usefull to help you focus in your work",
"manifest_version": 3,
"incognito": "split",
"browser_action": {
"default_popup": "index.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"main.js"
]
}
]
} | |