IMDB Rating in Netflix
Displays IMDb ratings in Netflix
Hvad er IMDB Rating in Netflix?
IMDB Rating in Netflix er en Chrome-udvidelse udviklet af akshatgadhwal72, og dens hovedfunktion er "Displays IMDb ratings in Netflix".
Udvidelsesskærmbilleder
Download IMDB Rating in Netflix-udvidelses-CRX-fil
Download IMDB Rating in Netflix-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | IMDB Rating in Netflix |
ID | llkcekkggahemmlbhmkcacabceginpcf |
Officiel URL | https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf |
Beskrivelse | Displays IMDb ratings in Netflix |
Filstørrelse | 6.38 KB |
Antal Installationer | 43 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-11-28 |
Udgivelsesdato | 2023-04-10 |
Bedømmelse | 5.00/5 Samlet 8 Bedømmelser |
Udvikler | akshatgadhwal72 |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing |
Understøttede Sprog | 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" } } |