Randflix - Random Episodes For Netflix

Adds a shuffle button to play a random episode of a given show.

Wat is Randflix - Random Episodes For Netflix?

Randflix - Random Episodes For Netflix is een Chrome-extensie ontwikkeld door Susan Chen, en de belangrijkste functie is "Adds a shuffle button to play a random episode of a given show.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Randflix - Random Episodes For Netflix

Download Randflix - Random Episodes For Netflix-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

                        A handy chrome extension for those who have seen their favourite shows on Netflix way too many times. Randflix allows you to randomize episode playback of a given TV show.

When choosing an episode becomes arduous, just turn to Randflix to make the choice for you!

https://github.com/bzvikler/netflix-randomizer                    

Basisinformatie over de Extensie

Naam Randflix - Random Episodes For Netflix Randflix - Random Episodes For Netflix
ID enjakkkpkgpcnjbmagjgkccljfimgbhh
Officiële URL https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh
Beschrijving Adds a shuffle button to play a random episode of a given show.
Bestandsgrootte 48.98 KB
Aantal Installaties 179
Huidige Versie 1.2
Laatst Bijgewerkt 2020-03-27
Publicatiedatum 2020-03-27
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Susan Chen
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/bzvikler/netflix-randomizer
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Randflix - Random Episodes For Netflix",
    "version": "1.2",
    "description": "Adds a shuffle button to play a random episode of a given show.",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ]
}