YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
什么是YouTube Shorts Remover?
YouTube Shorts Remover是由http://zalwicker.dev开发的Chrome扩展程序,该扩展的主要功能是“Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.”。
扩展截图
下载YouTube Shorts Remover扩展crx文件
下载YouTube Shorts Remover扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Removes YouTube shorts so your subscription feed only shows long-form videos. Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!
扩展基本信息
名称 | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
官方URL | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
简介 | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
文件大小 | 20.47 KB |
安装次数 | 865 |
当前版本 | 1.2 |
更新时间 | 2023-06-11 |
上架时间 | 2022-12-06 |
评分 | 3.73/5 共15次评分 |
开发者 | http://zalwicker.dev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.zalwicker.dev/projects |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Remover", "version": "1.2", "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.", "icons": { "32": "images\/noshorts32.png", "48": "images\/noshorts48.png", "128": "images\/noshorts128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "views\/settings.html" }, "permissions": [ "storage" ] } |