No Shorts

Redirects YouTube Shorts to YouTube videos.

什么是No Shorts?

No Shorts是由Wock开发的Chrome扩展程序,该扩展的主要功能是“Redirects YouTube Shorts to YouTube videos.”。

扩展截图

screenshot

下载No Shorts扩展crx文件

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

扩展使用说明

                        An extension that redirects YouTube short player urls to the normal YouTube player.
I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it.

It does one job, and only one job.
The only permission it needs is tabs, to handle YouTube onsite redirects.                    

扩展基本信息

名称 No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
官方URL https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
简介 Redirects YouTube Shorts to YouTube videos.
文件大小 12.74 KB
安装次数 117
当前版本 1.0
更新时间 2022-10-27
上架时间 2022-10-26
评分 4.20/5 共5次评分
开发者 Wock
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "No Shorts",
    "version": "1.0",
    "description": "Redirects YouTube Shorts to YouTube videos.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}