Whatshisface

This plugin works on Netflix pages to identify an actor on the screen

Cos'è Whatshisface?

Whatshisface è un'estensione di Chrome sviluppata da Henri Chabrand, Armand Didier, e la sua funzione principale è "This plugin works on Netflix pages to identify an actor on the screen".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Whatshisface

Scarica i file di estensione Whatshisface 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

                        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                    

Informazioni di Base sull'Estensione

Nome Whatshisface Whatshisface
ID hdlljjddnhidfgllahkjhpfgommecolc
URL Ufficiale https://chromewebstore.google.com/detail/whatshisface/hdlljjddnhidfgllahkjhpfgommecolc
Descrizione This plugin works on Netflix pages to identify an actor on the screen
Dimensione del File 1.35 MB
Conteggio Installazioni 103
Versione Corrente 1.1.0
Ultimo Aggiornamento 2017-10-12
Data di Pubblicazione 2017-10-11
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Henri Chabrand, Armand Didier
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://whatshisface-plugin.herokuapp.com/
Lingue Supportate 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"
    ]
}