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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://zalwicker.dev, και η κύρια λειτουργία του είναι "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Shorts Remover

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    ]
}