Whatshisface

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

O que é Whatshisface?

Whatshisface é uma extensão do Chrome desenvolvida por Henri Chabrand, Armand Didier, e sua principal característica é "This plugin works on Netflix pages to identify an actor on the screen".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Whatshisface

Baixe arquivos de extensão Whatshisface no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Whatshisface Whatshisface
ID hdlljjddnhidfgllahkjhpfgommecolc
URL Oficial https://chromewebstore.google.com/detail/whatshisface/hdlljjddnhidfgllahkjhpfgommecolc
Descrição This plugin works on Netflix pages to identify an actor on the screen
Tamanho do Arquivo 1.35 MB
Contagem de Instalações 103
Versão Atual 1.1.0
Última Atualização 2017-10-12
Data de Publicação 2017-10-11
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Henri Chabrand, Armand Didier
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://whatshisface-plugin.herokuapp.com/
Idiomas Suportados 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"
    ]
}