The Streaming Wizard

Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.

The Streaming Wizard क्या है?

The Streaming Wizard kidusn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        You can also click on the IMDB or Rotten Tomatoes ratings to visit the official IMDB or Rotten Tomatoes web pages in a new tab.

With this lightweight extension, you will never again have to browse Netflix or Hulu while simultaneously searching for ratings on the side. The cumbersome days of finding something good to watch and avoiding all the crap are over.                    

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

नाम The Streaming Wizard The Streaming Wizard
ID kccdfgnjifmimampikofeaobooddbcaj
आधिकारिक URL https://chromewebstore.google.com/detail/the-streaming-wizard/kccdfgnjifmimampikofeaobooddbcaj
विवरण Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.
फ़ाइल का आकार 135 KB
स्थापना संख्या 67
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-08-25
प्रकाशन तिथि 2019-08-24
रेटिंग 3.20/5 कुल 5 रेटिंग्स
डेवलपर kidusn
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "manifest_version": 2,
    "name": "The Streaming Wizard",
    "version": "1.0.0",
    "description": "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.",
    "icons": {
        "16": "images\/meta\/icon16.png",
        "32": "images\/meta\/icon32.png",
        "48": "images\/meta\/icon48.png",
        "128": "images\/meta\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "styles\/style.css"
            ],
            "js": [
                "src\/jquery-3.4.1.min.js",
                "src\/getRatings.js",
                "src\/addRatings.js",
                "src\/contentscriptnetflix.js"
            ],
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ]
        },
        {
            "css": [
                "styles\/style.css"
            ],
            "js": [
                "src\/jquery-3.4.1.min.js",
                "src\/getRatings.js",
                "src\/addRatings.js",
                "src\/contentscripthulu.js"
            ],
            "matches": [
                "https:\/\/*.hulu.com\/*"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/meta\/icon16.png",
            "32": "images\/meta\/icon32.png",
            "48": "images\/meta\/icon48.png",
            "128": "images\/meta\/icon128.png"
        },
        "default_title": "The Streaming Wizard"
    },
    "permissions": [
        "https:\/\/*.netflix.com\/*",
        "https:\/\/*.hulu.com\/*",
        "https:\/\/ajax.googleapis.com\/",
        "tabs"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "images\/imdb.png",
        "images\/rtRotten.png",
        "images\/rtFresh.png",
        "images\/rtCertifiedFresh.png",
        "images\/metacritic.png",
        "images\/oscar.png",
        "images\/goldenglobe.png"
    ]
}