Netflix IMDb Ratings
Adds the IMDb rating to Netflix show cards
Wat is Netflix IMDb Ratings?
Netflix IMDb Ratings is een Chrome-extensie ontwikkeld door kanslulz, en de belangrijkste functie is "Adds the IMDb rating to Netflix show cards".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix IMDb Ratings
Download Netflix IMDb Ratings-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
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. Basisinformatie over de Extensie
| Naam | |
| ID | flbaobpeildpkibhejhbapoleckbjkih |
| Officiële URL | https://chromewebstore.google.com/detail/netflix-imdb-ratings/flbaobpeildpkibhejhbapoleckbjkih |
| Beschrijving | Adds the IMDb rating to Netflix show cards |
| Bestandsgrootte | 6.33 KB |
| Aantal Installaties | 71 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2017-04-09 |
| Publicatiedatum | 2017-04-09 |
| Beoordeling | 2.22/5 Totaal 9 Beoordelingen |
| Ontwikkelaar | kanslulz |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |