Whatshisface

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

Whatshisface là gì?

Whatshisface là một tiện ích mở rộng Chrome được phát triển bởi Henri Chabrand, Armand Didier, và tính năng chính của nó là "This plugin works on Netflix pages to identify an actor on the screen".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Whatshisface

Tải xuống các tệp mở rộng Whatshisface dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Whatshisface Whatshisface
ID hdlljjddnhidfgllahkjhpfgommecolc
URL Chính Thức https://chromewebstore.google.com/detail/whatshisface/hdlljjddnhidfgllahkjhpfgommecolc
Mô tả This plugin works on Netflix pages to identify an actor on the screen
Kích Thước Tệp 1.35 MB
Số Lần Cài Đặt 103
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2017-10-12
Ngày Phát Hành 2017-10-11
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Henri Chabrand, Armand Didier
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://whatshisface-plugin.herokuapp.com/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}