Whatshisface
This plugin works on Netflix pages to identify an actor on the screen
Whatshisfaceคืออะไร?
Whatshisface เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Henri Chabrand, Armand Didier และคุณลักษณะหลักของมันคือ "This plugin works on Netflix pages to identify an actor on the screen"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Whatshisface
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |