Disable YouTube Watch Later Autoplay

Watch individual videos that you saved for later without autoplaying all of them.

Qu'est-ce que Disable YouTube Watch Later Autoplay ?

Disable YouTube Watch Later Autoplay est une extension Chrome développée par jacamera, et sa fonction principale est "Watch individual videos that you saved for later without autoplaying all of them.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Disable YouTube Watch Later Autoplay

Téléchargez les fichiers d'extension Disable YouTube Watch Later Autoplay 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

                        This browser extension disables the Watch Later autoplay behavior when selecting a video from the Watch Later list.

The YouTube Watch Later feature lets users save a video to watch at a later time. When selecting a video from the Watch Later list YouTube will then always autoplay every subsequent video from the list. This happens because YouTube treats the Watch Later list just like any other playlist and there is no way to disable autoplay when viewing videos in a playlist.

Once installed, the extension works automatically. When you click on a video on the Watch Later list the extension will remove the playlist parameters from the video URL, allowing you to watch the video or copy the URL without the default autoplaying playlist behavior.                    

Informations de Base sur l'Extension

Nom Disable YouTube Watch Later Autoplay Disable YouTube Watch Later Autoplay
ID pipapjplioodfcahamejlgfloniakbpa
URL Officiel https://chromewebstore.google.com/detail/disable-youtube-watch-lat/pipapjplioodfcahamejlgfloniakbpa
Description Watch individual videos that you saved for later without autoplaying all of them.
Taille du Fichier 9.88 KB
Nombre d'Installations 645
Version Actuelle 1.0.4
Dernière Mise à Jour 2023-09-25
Date de Publication 2022-03-21
Évaluation 4.50/5 Total 16 Évaluations
Développeur jacamera
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jacamera/disable-youtube-watch-later-autoplay
URL de la Page d'Aide https://github.com/jacamera/disable-youtube-watch-later-autoplay
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable YouTube Watch Later Autoplay",
    "description": "Watch individual videos that you saved for later without autoplaying all of them.",
    "version": "1.0.4",
    "manifest_version": 3,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}