Netfix (Netflix Ratings)

Adds TMDB ratings to Netflix interface.

Netfix (Netflix Ratings) là gì?

Netfix (Netflix Ratings) là một tiện ích mở rộng Chrome được phát triển bởi bolaum, và tính năng chính của nó là "Adds TMDB ratings to Netflix interface.".

Ả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 Netfix (Netflix Ratings)

Tải xuống các tệp mở rộng Netfix (Netflix Ratings) 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

                        A chrome extension to add TMDB ratings to Netflix interface, because why not.

This was inspired by a crappy Match system and lots of broken extensions in the store.

Code available at https://github.com/bolaum/netfix

Report issues here or at https://github.com/bolaum/netfix/issues.

Powered by (but not affiliated to) https://www.themoviedb.org/

Donations are most welcome!

BTC: 17YfYc5DCKQZBao1Au1HXBuEjtSaxN8xgM
ETH: 0x00061d7b58026676BA1582E8e738088995AfCAEC

Changelog:

v0.5.3
- Add hyperlink to TMDB in ratings stars (awesome PR by wassname (https://github.com/wassname)!)
- Fix ratings on expanded cards

v0.5.2
- Fix ID scraping
- Add more descriptive name and short name

v0.5.1
- Fix ID scraping
- Prioritize most voted TMDB result when multiple values are returned

v0.5
- Initial release                    

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

Tên Netfix (Netflix Ratings) Netfix (Netflix Ratings)
ID bdihekkpnckbmgafgoedabbebpafgfci
URL Chính Thức https://chromewebstore.google.com/detail/netfix-netflix-ratings/bdihekkpnckbmgafgoedabbebpafgfci
Mô tả Adds TMDB ratings to Netflix interface.
Kích Thước Tệp 59.81 KB
Số Lần Cài Đặt 1,765
Phiên Bản Hiện Tại 0.5.3
Cập Nhật Lần Cuối 2018-02-27
Ngày Phát Hành 2018-02-27
Đánh Giá 3.92/5 Tổng số 24 Đánh Giá
Nhà Phát Triển bolaum
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bolaum/netfix
URL Trang Trợ Giúp https://github.com/bolaum/netfix/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netfix (Netflix Ratings)",
    "short_name": "Netfix",
    "description": "Adds TMDB ratings to Netflix interface.",
    "version": "0.5.3",
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "css": [
                "css\/netfix.css"
            ],
            "js": [
                "lib\/underscore-min.js",
                "lib\/rate_limit.js",
                "lib\/jquery-3.2.1.min.js",
                "lib\/jquery.visible.min.js",
                "lib\/jquery-observe.js",
                "js\/utils.js",
                "js\/cardfactory.js",
                "js\/netflixapi.js",
                "js\/tmdbapi.js",
                "js\/fixer.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/api.themoviedb.org\/*"
    ]
}