Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Qu'est-ce que Remove YouTube Autoplay ?

Remove YouTube Autoplay est une extension Chrome développée par Kareem ElFaramawi, et sa fonction principale est "Isn't YouTube autoplay the worst? This removes it".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Remove YouTube Autoplay

Téléchargez les fichiers d'extension Remove YouTube 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

                        Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends.

This extension will continue to work if you:
- Delete browser history
- Enter incognito mode (After enabling this option in your extension settings)

Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.                    

Informations de Base sur l'Extension

Nom Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
URL Officiel https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Description Isn't YouTube autoplay the worst? This removes it
Taille du Fichier 1.68 MB
Nombre d'Installations 848
Version Actuelle 0.1.7
Dernière Mise à Jour 2023-06-05
Date de Publication 2018-10-06
Évaluation 3.57/5 Total 23 Évaluations
Développeur Kareem ElFaramawi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/krx/chrome-delete-youtube-autoplay
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove YouTube Autoplay",
    "description": "Isn't YouTube autoplay the worst? This removes it",
    "author": "krx",
    "version": "0.1.7",
    "host_permissions": [
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/disableAutoplay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "img\/icon_19.png"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    }
}