NETFLIX browse with IMDb rating

Browse NETFLIX with IMDb ratings shown on title cards

NETFLIX browse with IMDb rating là gì?

NETFLIX browse with IMDb rating là một tiện ích mở rộng Chrome được phát triển bởi ktothdev, và tính năng chính của nó là "Browse NETFLIX with IMDb ratings shown on title cards".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NETFLIX browse with IMDb rating

Tải xuống các tệp mở rộng NETFLIX browse with IMDb rating 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

                        The extension displays IMDb rating of the mouse hovered movies on your Netflix Home/TV-shows/Movies.. page. After you hovered a movie title card with your cursor the rating will appear on the top right corner.  Don't waste your time with looking after movie ratings on IMDb webpage any more. 

How it works:
The extension fetch the movie details from the OMDb API by Brian Fritz(https://www.omdbapi.com/) and display the ratings.

How to use:
1. Click on the extension's icon in the Chrome menu
2. Get your !!free!! OMDb API key (https://www.omdbapi.com/apikey.aspx) 
4. Paste the key you received in email into the input field on popup and DON'T FORGET TO !!CLICK SAVE!!

** Disclaimer ** Netflix and IMDb are registered trademarks, this extension is not affiliated with Netflix nor IMDb.                    

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

Tên NETFLIX browse with IMDb rating NETFLIX browse with IMDb rating
ID bgioekpgighagonidghmhjlbphlpjioa
URL Chính Thức https://chrome.google.com/webstore/detail/bgioekpgighagonidghmhjlbphlpjioa
Mô tả Browse NETFLIX with IMDb ratings shown on title cards
Kích Thước Tệp 16.79 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2019-07-16
Ngày Phát Hành 2019-07-16
Nhà Phát Triển ktothdev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NETFLIX browse with IMDb rating",
    "author": "T\u00f3th Kriszti\u00e1n Gyula",
    "version": "0.0.1",
    "description": "Browse NETFLIX with IMDb ratings shown on title cards",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/browse"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}