YouTube Autoplay Disabler

Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.

Wat is YouTube Autoplay Disabler?

YouTube Autoplay Disabler is een Chrome-extensie ontwikkeld door Luciano Ratamero, en de belangrijkste functie is "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Autoplay Disabler

Download YouTube Autoplay Disabler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Free and open-sourced alternative for disabling YouTube's autoplay "feature"

Checks if YouTube autoplay is on and, if it is, disables it.

https://github.com/lucianoratamero/youtube-autoplay-disabler                    

Basisinformatie over de Extensie

Naam YouTube Autoplay Disabler YouTube Autoplay Disabler
ID mlebignjhimfeggkjhhgbhomibiplmem
Officiële URL https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem
Beschrijving Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
Bestandsgrootte 366 KB
Aantal Installaties 161
Huidige Versie 0.2.1
Laatst Bijgewerkt 2021-04-29
Publicatiedatum 2018-06-15
Beoordeling 3.12/5 Totaal 17 Beoordelingen
Ontwikkelaar Luciano Ratamero
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Autoplay Disabler",
    "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
    "version": "0.2.1",
    "icons": {
        "128": "icon-small.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-small.png"
    }
}