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
公式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
Eメール [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"
    ]
}