Hide Youtube Watched Videos

This extension will hide watched youtube videos from the subscriptions page.

Cos'è Hide Youtube Watched Videos?

Hide Youtube Watched Videos è un'estensione di Chrome sviluppata da Matt0x5b, e la sua funzione principale è "This extension will hide watched youtube videos from the subscriptions page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Hide Youtube Watched Videos

Scarica i file di estensione Hide Youtube Watched Videos 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

                        Sick of finding which videos you haven't already watched within your subscription feed? This extension will automatically hide watched videos so you can focus on enjoying the new content.

Right click the extension icon for options: this can be used to adjust how much of the video must be watched before it is considered "Watched".

Note: Red Icon means the extension is disabled, Green is enabled. Click the icon to enable/disable.                    

Informazioni di Base sull'Estensione

Nome Hide Youtube Watched Videos Hide Youtube Watched Videos
ID ekcdnnkolgkikkhbbjcabcjdibfbafbl
URL Ufficiale https://chromewebstore.google.com/detail/hide-youtube-watched-vide/ekcdnnkolgkikkhbbjcabcjdibfbafbl
Descrizione This extension will hide watched youtube videos from the subscriptions page.
Dimensione del File 162 KB
Conteggio Installazioni 2,741
Versione Corrente 1.7.1
Ultimo Aggiornamento 2023-08-28
Data di Pubblicazione 2020-03-11
Valutazione 3.20/5 Totale 50 Valutazioni
Sviluppatore Matt0x5b
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/matt0x5B/HideYoutubeWatchedVideos-Issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Youtube Watched Videos",
    "description": "This extension will hide watched youtube videos from the subscriptions page.",
    "version": "1.7.1",
    "action": {
        "default_icon": "images\/icon128.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_page": "src\/options.html",
    "background": {
        "service_worker": "script.js"
    },
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "src\/hideYoutube.css"
            ]
        }
    ]
}