NETFLIX browse with IMDb rating
Browse NETFLIX with IMDb ratings shown on title cards
NETFLIX browse with IMDb rating क्या है?
NETFLIX browse with IMDb rating ktothdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browse NETFLIX with IMDb ratings shown on title cards"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NETFLIX browse with IMDb rating एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | bgioekpgighagonidghmhjlbphlpjioa |
आधिकारिक URL | https://chrome.google.com/webstore/detail/bgioekpgighagonidghmhjlbphlpjioa |
विवरण | Browse NETFLIX with IMDb ratings shown on title cards |
फ़ाइल का आकार | 16.79 KB |
स्थापना संख्या | 35 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2019-07-16 |
प्रकाशन तिथि | 2019-07-16 |
डेवलपर | ktothdev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |