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ファイルをダウンロード

Whatshisface拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}