Nextflix

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

Vad är Nextflix?

Nextflix är en Chrome-tillägg utvecklad av https://www.ukadev.com, och dess huvudfunktion är "Creates a simple shortcut to play the next netflix episode available. Just click "N" to go to the next one.".

Tilläggsskärmbilder

screenshot

Ladda ner Nextflix-förlängningens CRX-fil

Ladda ner Nextflix-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

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

Grundläggande Information om Tillägg

Namn Nextflix Nextflix
ID ejkplhjdabmobcokfddpgkdlncdgcdgd
Officiell webbadress https://chromewebstore.google.com/detail/nextflix/ejkplhjdabmobcokfddpgkdlncdgcdgd
Beskrivning Creates a simple shortcut to play the next netflix episode available. Just click "N" to go to the next one.
Filstorlek 45.34 KB
Antal Installationer 409
Aktuell Version 1.2
Senast Uppdaterad 2023-12-04
Publiceringsdatum 2020-12-26
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.ukadev.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}