IMDB Ratings Viewer
Shows ratings beside Movie names on Actor pages
Co to jest IMDB Ratings Viewer?
IMDB Ratings Viewer to rozszerzenie Chrome opracowane przez shadyabhi (Abhijeet Rastogi), a jego główną funkcją jest „Shows ratings beside Movie names on Actor pages”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia IMDB Ratings Viewer
Pobierz pliki rozszerzeń IMDB Ratings Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
If you are a movie freak, a day won't pass when you won't open an actor's page and find more movies to watch. The actor's page has the list of all the movies in which he acted but for some reason IMDb doesn't show the movie ratings. I feel to lazy to open each links and watch the rating. So, I wrote this extension to ease up the process. The ratings of movies are shown beside the names of the movies and after installing there will not be any need to open movie's link in new tab just to watch the rating.
Podstawowe informacje o rozszerzeniu
Nazwa | IMDB Ratings Viewer |
ID | daaoegihbflfijkdhalidlmochdbobgb |
Oficjalny URL | https://chromewebstore.google.com/detail/imdb-ratings-viewer/daaoegihbflfijkdhalidlmochdbobgb |
Opis | Shows ratings beside Movie names on Actor pages |
Rozmiar pliku | 67.84 KB |
Liczba instalacji | 647 |
Aktualna Wersja | 2.9 |
Ostatnia Aktualizacja | 2023-04-14 |
Data Publikacji | 2020-07-28 |
Ocena | 3.81/5 Łącznie 36 Oceny |
Deweloper | shadyabhi (Abhijeet Rastogi) |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/shadyabhi/IMDb-Ratings-Viewer |
Adres URL Strony Pomocy | https://github.com/shadyabhi/IMDb-Ratings-Viewer |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "IMDB Ratings Viewer", "version": "2.9", "description": "Shows ratings beside Movie names on Actor pages", "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/www.imdb.com\/name\/*", "https:\/\/www.imdb.com\/title\/*" ], "js": [ "contentScript.js" ] } ], "icons": { "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 3 } |