Randflix - Random Episodes For Netflix

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

Qu'est-ce que Randflix - Random Episodes For Netflix ?

Randflix - Random Episodes For Netflix est une extension Chrome développée par Susan Chen, et sa fonction principale est "Adds a shuffle button to play a random episode of a given show.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Randflix - Random Episodes For Netflix

Téléchargez les fichiers d'extension Randflix - Random Episodes For Netflix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Randflix - Random Episodes For Netflix Randflix - Random Episodes For Netflix
ID enjakkkpkgpcnjbmagjgkccljfimgbhh
URL Officiel https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh
Description Adds a shuffle button to play a random episode of a given show.
Taille du Fichier 48.98 KB
Nombre d'Installations 179
Version Actuelle 1.2
Dernière Mise à Jour 2020-03-27
Date de Publication 2020-03-27
Évaluation 3.00/5 Total 4 Évaluations
Développeur Susan Chen
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/bzvikler/netflix-randomizer
Langues Prises en Charge 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
        }
    ]
}