Watched Videos On YouTube Remover

Remove completely watched videos from playlists on YouTube.

Qu'est-ce que Watched Videos On YouTube Remover ?

Watched Videos On YouTube Remover est une extension Chrome développée par 7evenk, et sa fonction principale est "Remove completely watched videos from playlists on YouTube.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Watched Videos On YouTube Remover

Téléchargez les fichiers d'extension Watched Videos On YouTube Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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."                    

Informations de Base sur l'Extension

Nom Watched Videos On YouTube Remover Watched Videos On YouTube Remover
ID kfpijemcjneklkhbdhidjfdddkommecm
URL Officiel https://chromewebstore.google.com/detail/watched-videos-on-youtube/kfpijemcjneklkhbdhidjfdddkommecm
Description Remove completely watched videos from playlists on YouTube.
Taille du Fichier 991 KB
Nombre d'Installations 143
Version Actuelle 1.0.5
Dernière Mise à Jour 2023-05-25
Date de Publication 2022-06-07
Évaluation 3.33/5 Total 6 Évaluations
Développeur 7evenk
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://7evenk.github.io
URL de la Page d'Aide https://github.com/7evenk/WatchedVideosOnYouTubeRemover/issues
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}