IMDB Rating in Netflix
Displays IMDb ratings in Netflix
Wat is IMDB Rating in Netflix?
IMDB Rating in Netflix is een Chrome-extensie ontwikkeld door akshatgadhwal72, en de belangrijkste functie is "Displays IMDb ratings in Netflix".
Extensie Screenshots
Download het CRX-bestand van de extensie IMDB Rating in Netflix
Download IMDB Rating in Netflix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | llkcekkggahemmlbhmkcacabceginpcf |
| Officiële URL | https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf |
| Beschrijving | Displays IMDb ratings in Netflix |
| Bestandsgrootte | 6.38 KB |
| Aantal Installaties | 43 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2023-11-28 |
| Publicatiedatum | 2023-04-10 |
| Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | akshatgadhwal72 |
| [email protected] | |
| Betalingswijze | free |
| URL van de Privacybeleid Pagina | https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing |
| Ondersteunde Talen | 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"
}
} | |