YouTube Shorts Remover

Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.

Apa itu YouTube Shorts Remover?

YouTube Shorts Remover adalah ekstensi Chrome yang dikembangkan oleh http://zalwicker.dev, dan fitur utamanya adalah "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi YouTube Shorts Remover

Unduh file ekstensi YouTube Shorts Remover dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama YouTube Shorts Remover YouTube Shorts Remover
ID aefjgmckfgndnaopgholfhdabghaoajg
URL Resmi https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg
Deskripsi Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Ukuran File 20.47 KB
Jumlah Instalasi 865
Versi Saat Ini 1.2
Terakhir Diperbarui 2023-06-11
Tanggal Publikasi 2022-12-06
Penilaian 3.73/5 Total 15 Penilaian
Pengembang http://zalwicker.dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.zalwicker.dev/projects
Bahasa yang Didukung 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"
    ]
}