WCO Autoplay

Autoplay next episode on Watch Cartoon Online

Vad är WCO Autoplay?

WCO Autoplay är en Chrome-tillägg utvecklad av Kory Schneider, och dess huvudfunktion är "Autoplay next episode on Watch Cartoon Online".

Tilläggsskärmbilder

screenshot

Ladda ner WCO Autoplay-förlängningens CRX-fil

Ladda ner WCO Autoplay-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn WCO Autoplay WCO Autoplay
ID mcijhjlgoibajdhpiehdidmnbplidpef
Officiell webbadress https://chrome.google.com/webstore/detail/wco-autoplay/mcijhjlgoibajdhpiehdidmnbplidpef
Beskrivning Autoplay next episode on Watch Cartoon Online
Filstorlek 4.79 KB
Antal Installationer 386
Aktuell Version 1.0.2
Senast Uppdaterad 2022-10-23
Publiceringsdatum 2021-09-08
Betyg 3.13/5 Totalt 8 Betyg
Utvecklare Kory Schneider
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}