Netfix (Netflix Ratings)

Adds TMDB ratings to Netflix interface.

Netfix (Netflix Ratings) क्या है?

Netfix (Netflix Ratings) bolaum द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds TMDB ratings to Netflix interface."।

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

screenshot
screenshot

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

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

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

                        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                    

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

नाम Netfix (Netflix Ratings) Netfix (Netflix Ratings)
ID bdihekkpnckbmgafgoedabbebpafgfci
आधिकारिक URL https://chromewebstore.google.com/detail/netfix-netflix-ratings/bdihekkpnckbmgafgoedabbebpafgfci
विवरण Adds TMDB ratings to Netflix interface.
फ़ाइल का आकार 59.81 KB
स्थापना संख्या 1,765
वर्तमान संस्करण 0.5.3
अंतिम अपडेट 2018-02-27
प्रकाशन तिथि 2018-02-27
रेटिंग 3.92/5 कुल 24 रेटिंग्स
डेवलपर bolaum
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bolaum/netfix
सहायता पृष्ठ URL https://github.com/bolaum/netfix/issues
समर्थित भाषाएँ 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\/*"
    ]
}