No YouTube Shorts

Removes all Shorts from YouTube

Apa itu No YouTube Shorts?

No YouTube Shorts adalah ekstensi Chrome yang dikembangkan oleh Ben, dan fitur utamanya adalah "Removes all Shorts from YouTube".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi No YouTube Shorts

Unduh file ekstensi No YouTube Shorts 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

                        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.                    

Informasi Dasar Ekstensi

Nama No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
URL Resmi https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
Deskripsi Removes all Shorts from YouTube
Ukuran File 37.34 KB
Jumlah Instalasi 60,000
Versi Saat Ini 0.6.2
Terakhir Diperbarui 2023-09-27
Tanggal Publikasi 2022-03-03
Penilaian 4.31/5 Total 240 Penilaian
Pengembang Ben
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}