Whatshisface

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

Whatshisface란 무엇입니까?

Whatshisface은(는) Henri Chabrand, Armand Didier에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin works on Netflix pages to identify an actor on the screen"입니다.

확장 프로그램 스크린샷

screenshot

Whatshisface 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Whatshisface Whatshisface
ID hdlljjddnhidfgllahkjhpfgommecolc
공식 URL https://chromewebstore.google.com/detail/whatshisface/hdlljjddnhidfgllahkjhpfgommecolc
설명 This plugin works on Netflix pages to identify an actor on the screen
파일 크기 1.35 MB
설치 횟수 103
현재 버전 1.1.0
최근 업데이트 2017-10-12
출시 날짜 2017-10-11
평점 5.00/5 총 3 개의 평점
개발자 Henri Chabrand, Armand Didier
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://whatshisface-plugin.herokuapp.com/
지원되는 언어 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"
    ]
}