Randflix - Random Episodes For Netflix

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

Randflix - Random Episodes For Netflix क्या है?

Randflix - Random Episodes For Netflix Susan Chen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a shuffle button to play a random episode of a given show."।

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

screenshot
screenshot

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

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

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

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Randflix - Random Episodes For Netflix Randflix - Random Episodes For Netflix
ID enjakkkpkgpcnjbmagjgkccljfimgbhh
आधिकारिक URL https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh
विवरण Adds a shuffle button to play a random episode of a given show.
फ़ाइल का आकार 48.98 KB
स्थापना संख्या 179
वर्तमान संस्करण 1.2
अंतिम अपडेट 2020-03-27
प्रकाशन तिथि 2020-03-27
रेटिंग 3.00/5 कुल 4 रेटिंग्स
डेवलपर Susan Chen
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/bzvikler/netflix-randomizer
समर्थित भाषाएँ 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
        }
    ]
}