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 |
官方網址 | 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" ] } |