Netflix IMDb Ratings
Adds the IMDb rating to Netflix show cards
Cos'è Netflix IMDb Ratings?
Netflix IMDb Ratings è un'estensione di Chrome sviluppata da kanslulz, e la sua funzione principale è "Adds the IMDb rating to Netflix show cards".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netflix IMDb Ratings
Scarica i file di estensione Netflix IMDb Ratings 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
This extension adds a bubble with the IMDb rating when you hover over a card on Netflix. It looks native and links to the IMDb description page. Informazioni di Base sull'Estensione
| Nome | |
| ID | flbaobpeildpkibhejhbapoleckbjkih |
| URL Ufficiale | https://chromewebstore.google.com/detail/netflix-imdb-ratings/flbaobpeildpkibhejhbapoleckbjkih |
| Descrizione | Adds the IMDb rating to Netflix show cards |
| Dimensione del File | 6.33 KB |
| Conteggio Installazioni | 71 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2017-04-09 |
| Data di Pubblicazione | 2017-04-09 |
| Valutazione | 2.22/5 Totale 9 Valutazioni |
| Sviluppatore | kanslulz |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Netflix IMDb Ratings",
"description": "Adds the IMDb rating to Netflix show cards",
"version": "1.1",
"browser_action": {
"default_icon": "logo.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/*.netflix.com\/*",
"http:\/\/*.netflix.com\/*"
],
"js": [
"page_observer.js",
"rating_utils.js"
]
}
]
} | |