Block Shorts - No more unwanted Shorts
Remove Shorts from your YouTube desktop experience.
什么是Block Shorts - No more unwanted Shorts?
Block Shorts - No more unwanted Shorts是由arthur.joppart开发的Chrome扩展程序,该扩展的主要功能是“Remove Shorts from your YouTube desktop experience.”。
扩展截图
下载Block Shorts - No more unwanted Shorts扩展crx文件
下载Block Shorts - No more unwanted Shorts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension gives you the possibility to hide all unwanted YouTube Shorts by simply flipping a switch on the top of the page. 扩展基本信息
| 名称 | |
| ID | adbkiegjafadlmleigmjongmcadeghmo |
| 官方URL | https://chromewebstore.google.com/detail/block-shorts-no-more-unwa/adbkiegjafadlmleigmjongmcadeghmo |
| 简介 | Remove Shorts from your YouTube desktop experience. |
| 文件大小 | 9.61 KB |
| 安装次数 | 64 |
| 当前版本 | 1.4 |
| 更新时间 | 2023-06-13 |
| 上架时间 | 2022-10-26 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | arthur.joppart |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/BelgianNoise/remove-yt-shorts-chrome-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Block Shorts - No more unwanted Shorts",
"version": "1.4",
"manifest_version": 3,
"description": "Remove Shorts from your YouTube desktop experience.",
"permissions": [],
"icons": {
"128": "128.png"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
],
"css": [
"style.css"
]
}
]
} | |