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.”。

擴展截圖

screenshot
screenshot

下載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 YouTube Shorts Remover
ID aefjgmckfgndnaopgholfhdabghaoajg
官方網址 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"
    ]
}