YouHide
Hides viewed videos on Youtube's subscriptions page
什么是YouHide?
YouHide是由Maxime Cousinou开发的Chrome扩展程序,该扩展的主要功能是“Hides viewed videos on Youtube's subscriptions page”。
扩展截图
下载YouHide扩展crx文件
下载YouHide扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically hides viewed and partially viewed items and shorts.
Alternate between hidden, quasi-transparent and original display. 扩展基本信息
| 名称 | |
| ID | gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| 官方URL | https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| 简介 | Hides viewed videos on Youtube's subscriptions page |
| 文件大小 | 10.28 KB |
| 安装次数 | 336 |
| 当前版本 | 2.0.2 |
| 更新时间 | 2024-01-13 |
| 上架时间 | 2017-09-08 |
| 评分 | 3.88/5 共17次评分 |
| 开发者 | Maxime Cousinou |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouHide",
"description": "Hides viewed videos on Youtube's subscriptions page",
"version": "2.0.2",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon-hidden.png",
"38": "[email protected]"
},
"default_title": "Toggle"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"injected.js"
],
"css": [
"injected.css"
]
}
]
} | |