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 là gì?

The Streaming Wizard là một tiện ích mở rộng Chrome được phát triển bởi kidusn, và tính năng chính của nó là "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng The Streaming Wizard

Tải xuống các tệp mở rộng The Streaming Wizard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên The Streaming Wizard The Streaming Wizard
ID kccdfgnjifmimampikofeaobooddbcaj
URL Chính Thức https://chromewebstore.google.com/detail/the-streaming-wizard/kccdfgnjifmimampikofeaobooddbcaj
Mô tả Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.
Kích Thước Tệp 135 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-08-25
Ngày Phát Hành 2019-08-24
Đánh Giá 3.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển kidusn
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}