Whatshisface

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

Whatshisface क्या है?

Whatshisface Henri Chabrand, Armand Didier द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin works on Netflix pages to identify an actor on the screen"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Whatshisface एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}