Random Episodes Generator

This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).

Τι είναι το Random Episodes Generator;

Το Random Episodes Generator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jasshtag, και η κύρια λειτουργία του είναι "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Random Episodes Generator

Λήψη αρχείων επέκτασης Random Episodes Generator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        With this extension, users can play a random episode of The Simpsons, and The Office (among other series), because those series have a large catalog of episodes, users will be allowed to enjoy them without worrying of pick an episode.

The providers of the episodes are the platforms Disney + and Star + (for LATAM users), so subscriptions to that services are required to see the episodes and are not linked to this extension.

Now the extension autoplay another random episode instead of the next one.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Random Episodes Generator Random Episodes Generator
ID cphgomachciegklpciofndoakgofgiea
Επίσημο URL https://chromewebstore.google.com/detail/random-episodes-generator/cphgomachciegklpciofndoakgofgiea
Περιγραφή This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).
Μέγεθος Αρχείου 772 KB
Αριθμός Εγκαταστάσεων 134
Τρέχουσα Έκδοση 0.9.3
Τελευταία Ενημέρωση 2022-10-18
Ημερομηνία Δημοσίευσης 2022-07-23
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Jasshtag
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Random Episodes Generator",
    "description": "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users).",
    "version": "0.9.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "action": {
        "default_popup": "\/src\/episodes_generator\/popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.starplus.com\/*\/video\/*",
                "*:\/\/www.disneyplus.com\/video\/*"
            ],
            "js": [
                "scripts\/random_helper.js",
                "scripts\/autoplay.js"
            ],
            "run_at": "document_end"
        }
    ]
}