Nextflix

Creates a simple shortcut to play the next netflix episode available. Just click "N" to go to the next one.

Hvad er Nextflix?

Nextflix er en Chrome-udvidelse udviklet af https://www.ukadev.com, og dens hovedfunktion er "Creates a simple shortcut to play the next netflix episode available. Just click "N" to go to the next one.".

Udvidelsesskærmbilleder

screenshot

Download Nextflix-udvidelses-CRX-fil

Download Nextflix-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        The easiest way to do it. This extension simulates a click on the "next episode" button via keyboard shortcut.                    

Grundlæggende oplysninger om udvidelsen

Navn Nextflix Nextflix
ID ejkplhjdabmobcokfddpgkdlncdgcdgd
Officiel URL https://chromewebstore.google.com/detail/nextflix/ejkplhjdabmobcokfddpgkdlncdgcdgd
Beskrivelse Creates a simple shortcut to play the next netflix episode available. Just click "N" to go to the next one.
Filstørrelse 45.34 KB
Antal Installationer 409
Nuværende Version 1.2
Senest Opdateret 2023-12-04
Udgivelsesdato 2020-12-26
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://www.ukadev.com
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nextflix",
    "author": "Diego Pazos ",
    "version": "1.2",
    "description": "Creates a simple shortcut to play the next netflix episode available. Just click \"N\" to go to the next one.",
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "manifest_version": 3
}