WCO Autoplay

Autoplay next episode on Watch Cartoon Online

Was ist WCO Autoplay?

WCO Autoplay ist eine Chrome-Erweiterung, die von Kory Schneider entwickelt wurde, und ihr Hauptmerkmal ist "Autoplay next episode on Watch Cartoon Online".

Erweiterungsscreenshots

screenshot

WCO Autoplay-Erweiterungs-CRX-Datei herunterladen

Laden Sie WCO Autoplay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        With this extension, on Watch Cartoon Online the next episode in the series will automatically start playing after the current video ends.

Due to API limitations, the extension cannot automatically fullscreen the video player. Instead, styling is applied to make the video take up the entire viewport, so putting your browser in fullscreen mode will make the video fullscreen.                    

Grundlegende Informationen zur Erweiterung

Name WCO Autoplay WCO Autoplay
ID mcijhjlgoibajdhpiehdidmnbplidpef
Offizielle URL https://chrome.google.com/webstore/detail/wco-autoplay/mcijhjlgoibajdhpiehdidmnbplidpef
Beschreibung Autoplay next episode on Watch Cartoon Online
Dateigröße 4.79 KB
Installationsanzahl 386
Aktuelle Version 1.0.2
Letztes Update 2022-10-23
Veröffentlichungsdatum 2021-09-08
Bewertung 3.13/5 Insgesamt 8 Bewertungen
Entwickler Kory Schneider
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WCO Autoplay",
    "description": "Autoplay next episode on Watch Cartoon Online",
    "version": "1.0.2",
    "action": {
        "default_icon": {
            "32": "icons\/icon32.png"
        },
        "default_title": "WatchCartoonOnline Autoplay"
    },
    "icons": {
        "32": "icons\/icon32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wcofun.net\/*"
            ],
            "js": [
                "autoplay.js"
            ],
            "css": [
                "fullscreen.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "https:\/\/*.wcofun.net\/*"
    ],
    "manifest_version": 3
}