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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة The Streaming Wizard

قم بتنزيل ملفات الامتداد The Streaming Wizard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}