No Shorts

Redirects YouTube Shorts to YouTube videos.

Apa itu No Shorts?

No Shorts adalah ekstensi Chrome yang dikembangkan oleh Wock, dan fitur utamanya adalah "Redirects YouTube Shorts to YouTube videos.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi No Shorts

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

                        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.                    

Informasi Dasar Ekstensi

Nama No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
URL Resmi https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
Deskripsi Redirects YouTube Shorts to YouTube videos.
Ukuran File 12.74 KB
Jumlah Instalasi 117
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-10-27
Tanggal Publikasi 2022-10-26
Penilaian 4.20/5 Total 5 Penilaian
Pengembang Wock
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}