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”。
扩展截图
下载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 |
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" ] } |