IMDB Rating in Netflix
Displays IMDb ratings in Netflix
Cos'è IMDB Rating in Netflix?
IMDB Rating in Netflix è un'estensione di Chrome sviluppata da akshatgadhwal72, e la sua funzione principale è "Displays IMDb ratings in Netflix".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione IMDB Rating in Netflix
Scarica i file di estensione IMDB Rating in Netflix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | llkcekkggahemmlbhmkcacabceginpcf |
| URL Ufficiale | https://chromewebstore.google.com/detail/imdb-rating-in-netflix/llkcekkggahemmlbhmkcacabceginpcf |
| Descrizione | Displays IMDb ratings in Netflix |
| Dimensione del File | 6.38 KB |
| Conteggio Installazioni | 43 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-11-28 |
| Data di Pubblicazione | 2023-04-10 |
| Valutazione | 5.00/5 Totale 8 Valutazioni |
| Sviluppatore | akshatgadhwal72 |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | https://docs.google.com/document/d/1hrTFnufeou2_shRSvwbzcfTw7DpvNHXv2Owyz_2iDzU/edit?usp=sharing |
| Lingue Supportate | 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"
}
} | |