Better YouTube Subscriptions

Hide YouTube Shorts and videos you have already watched from your subscriptions feed !

Cos'è Better YouTube Subscriptions?

Better YouTube Subscriptions è un'estensione di Chrome sviluppata da OptiSearch, e la sua funzione principale è "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Better YouTube Subscriptions

Scarica i file di estensione Better YouTube Subscriptions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Better YouTube Subscriptions is a simple browser extension that allows you to hide the YouTube Shorts videos that are polluting your subscriptions feed.
It can also hide the videos that you have already watched.

Of course, you can make them appear again with a simple click of a button.

In short, it cleans your YouTube Subscriptions feed to only show what you want to watch !                    

Informazioni di Base sull'Estensione

Nome Better YouTube Subscriptions Better YouTube Subscriptions
ID hbopiiffeioghjoeakkknpcealnlomod
URL Ufficiale https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod
Descrizione Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
Dimensione del File 28 KB
Conteggio Installazioni 37
Versione Corrente 1.0
Ultimo Aggiornamento 2023-02-26
Data di Pubblicazione 2022-09-29
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore OptiSearch
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://dj0ulo.github.io/OptiSearch/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better YouTube Subscriptions",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !",
    "icons": {
        "128": "images\/icon_128.png",
        "1024": "images\/icon_1024.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "src\/pop-up\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/style.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/settings.js",
                "src\/utils.js",
                "src\/content_script.js"
            ]
        }
    ]
}