No YouTube Shorts

Removes all Shorts from YouTube

什么是No YouTube Shorts?

No YouTube Shorts是由Ben开发的Chrome扩展程序,该扩展的主要功能是“Removes all Shorts from YouTube”。

扩展截图

screenshot

下载No YouTube Shorts扩展crx文件

下载No YouTube Shorts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Tired of the YouTube Shorts?
No problem, this extension has your back and removes them from the YouTube page!

New in version 0.6.2:
- Bugfixes

Bugs? Improvement ideas? Feel free to message me.                    

扩展基本信息

名称 No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
官方URL https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
简介 Removes all Shorts from YouTube
文件大小 37.34 KB
安装次数 60,000
当前版本 0.6.2
更新时间 2023-09-27
上架时间 2022-03-03
评分 4.31/5 共240次评分
开发者 Ben
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No YouTube Shorts",
    "description": "Removes all Shorts from YouTube",
    "version": "0.6.2",
    "action": {
        "default_popup": "popup.html",
        "default_title": "No YouTube Shorts"
    },
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "no-youtube-shorts-content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "no-youtube-shorts-background-script.js"
    },
    "icons": {
        "48": "assets\/img\/logo48.png",
        "128": "assets\/img\/logo128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/no-youtube-shorts.css"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}