Whatshisface
This plugin works on Netflix pages to identify an actor on the screen
Co to jest Whatshisface?
Whatshisface to rozszerzenie Chrome opracowane przez Henri Chabrand, Armand Didier, a jego główną funkcją jest „This plugin works on Netflix pages to identify an actor on the screen”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Whatshisface
Pobierz pliki rozszerzeń Whatshisface 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
WhatsHisFace is a Chrome extension that identifies an actor on the screen when watching Netflix. It uses face recognition and the Imdb database to return: - a picture of the actor - his name - his character's name in the movie/TV show
Podstawowe informacje o rozszerzeniu
Nazwa | Whatshisface |
ID | hdlljjddnhidfgllahkjhpfgommecolc |
Oficjalny URL | https://chromewebstore.google.com/detail/whatshisface/hdlljjddnhidfgllahkjhpfgommecolc |
Opis | This plugin works on Netflix pages to identify an actor on the screen |
Rozmiar pliku | 1.35 MB |
Liczba instalacji | 103 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2017-10-12 |
Data Publikacji | 2017-10-11 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Henri Chabrand, Armand Didier |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://whatshisface-plugin.herokuapp.com/ |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Whatshisface", "version": "1.1.0", "description": "This plugin works on Netflix pages to identify an actor on the screen", "icons": { "16": "src\/img\/icon16.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/www.netflix.com\/*" ], "externally_connectable": { "matches": [ "https:\/\/www.google.co.uk\/*", "https:\/\/www.netflix.com\/*" ] }, "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com 'unsafe-eval'; object-src 'self';", "content_scripts": [ { "js": [ "src\/js\/jQuery.js" ], "matches": [ "https:\/\/whatshisface.herokuapp.com\/webhook", "https:\/\/api.imgur.com\/3\/image" ] } ], "background": { "persistent": true, "scripts": [ "src\/js\/jQuery.js", "src\/js\/background.js" ] }, "browser_action": { "default_title": "Who's this actor?", "default_popup": "popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E" } } }, "author": [ "Henri Chabrand", "Armand Didier" ] } |