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 Jasshtag द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension retrieves a random episode of 'The Simpsons' from either Disney Plus and Star Plus (For LATAM users)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Random Episodes Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}