IMDB Rating in Netflix
Displays IMDb ratings in Netflix
What is IMDB Rating in Netflix?
IMDB Rating in Netflix is a Chrome extension developed by akshatgadhwal72, and its main feature is "Displays IMDb ratings in Netflix".
Extension Screenshots
Download IMDB Rating in Netflix Extension CRX File
Download IMDB Rating in Netflix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Provides Premium Netflix Viewing Experience with IMDb ratings for imformed decision making - Minimalist UI, Lowest Distraction - High Availability - Life Time Validity For every item ( even for the featured content at the top), you will see a IMDb rating or "N/A" if the item is not yet rated.
Extension Basic Information
Name | IMDB Rating in Netflix |
ID | llkcekkggahemmlbhmkcacabceginpcf |
Official URL | https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf |
Description | Displays IMDb ratings in Netflix |
File Size | 6.38 KB |
Installation Count | 43 |
Current Version | 1.0 |
Last Updated | 2023-11-28 |
Publish Date | 2023-04-10 |
Rating | 5.00/5 Total 8 Ratings |
Developer | akshatgadhwal72 |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "IMDB Rating in Netflix", "version": "1.0", "description": "Displays IMDb ratings in Netflix", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "action": { "default_popup": "popup.html", "default_title": "Information Page" } } |