Watched Videos On YouTube Remover

Remove completely watched videos from playlists on YouTube.

Cos'è Watched Videos On YouTube Remover?

Watched Videos On YouTube Remover è un'estensione di Chrome sviluppata da 7evenk, e la sua funzione principale è "Remove completely watched videos from playlists on YouTube.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Watched Videos On YouTube Remover

Scarica i file di estensione Watched Videos On YouTube Remover 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

                        YouTube only allows you to remove all watched videos from the Watch Later playlist, not taking progress into account. Videos that have only been partially viewed will also be deleted from the playlist. For individual playlists the function is even not available at all.

★ By means of this extension, the fully viewed videos can be deleted automatically from a playlist.

★ The partially watched videos remain in the playlist and can be watched at a later time.

The extension extends the action menu by the entry "Remove completely watched videos".

"A playlist on YouTube employs a lazy loading technique, meaning that it loads content as needed rather than all at once. Therefore, this extension operates based on the entries that have already been loaded. It doesn't automatically load all entries in the playlist. For the extension to consider more videos, you would need to manually scroll down through your playlist to load more entries."                    

Informazioni di Base sull'Estensione

Nome Watched Videos On YouTube Remover Watched Videos On YouTube Remover
ID kfpijemcjneklkhbdhidjfdddkommecm
URL Ufficiale https://chromewebstore.google.com/detail/watched-videos-on-youtube/kfpijemcjneklkhbdhidjfdddkommecm
Descrizione Remove completely watched videos from playlists on YouTube.
Dimensione del File 991 KB
Conteggio Installazioni 143
Versione Corrente 1.0.5
Ultimo Aggiornamento 2023-05-25
Data di Pubblicazione 2022-06-07
Valutazione 3.33/5 Totale 6 Valutazioni
Sviluppatore 7evenk
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://7evenk.github.io
URL della Pagina di Aiuto https://github.com/7evenk/WatchedVideosOnYouTubeRemover/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Watched Videos On YouTube Remover",
    "description": "Remove completely watched videos from playlists on YouTube.",
    "version": "1.0.5",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "background.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon16.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}