Whatshisface
This plugin works on Netflix pages to identify an actor on the screen
Qu'est-ce que Whatshisface ?
Whatshisface est une extension Chrome développée par Henri Chabrand, Armand Didier, et sa fonction principale est "This plugin works on Netflix pages to identify an actor on the screen".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Whatshisface
Téléchargez les fichiers d'extension Whatshisface au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Whatshisface |
ID | hdlljjddnhidfgllahkjhpfgommecolc |
URL Officiel | https://chromewebstore.google.com/detail/whatshisface/hdlljjddnhidfgllahkjhpfgommecolc |
Description | This plugin works on Netflix pages to identify an actor on the screen |
Taille du Fichier | 1.35 MB |
Nombre d'Installations | 103 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2017-10-12 |
Date de Publication | 2017-10-11 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Henri Chabrand, Armand Didier |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://whatshisface-plugin.herokuapp.com/ |
Langues Prises en Charge | 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" ] } |