Mustachio Redux
Appends moustaches to all faces!
Was ist Mustachio Redux?
Mustachio Redux ist eine Chrome-Erweiterung, die von Taylor Brown entwickelt wurde, und ihr Hauptmerkmal ist "Appends moustaches to all faces!".
Erweiterungsscreenshots
Mustachio Redux-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mustachio Redux-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Add a mustache to your browsing experience! This is an updated fork of mustachio - Now with local face detection! Test here: http://www.cs.columbia.edu/CAVE/databases/pubfig/explore/Mikhail_Gorbachev.jpg check out the fork at: https://github.com/taylor-brown/mustachio-chrome If you enjoyed this, take a moment and donate to someone who could use a mustachio'd fatherly (or motherly) figure in their life: http://www.charitynavigator.org/index.cfm?bay=search.results&cgid=6&cuid=17
Grundlegende Informationen zur Erweiterung
Name | Mustachio Redux |
ID | hbnnipmnpgiepegnlmekieblhjmchmbf |
Offizielle URL | https://chromewebstore.google.com/detail/mustachio-redux/hbnnipmnpgiepegnlmekieblhjmchmbf |
Beschreibung | Appends moustaches to all faces! |
Dateigröße | 495 KB |
Installationsanzahl | 375 |
Aktuelle Version | 2.0.1 |
Letztes Update | 2013-03-23 |
Veröffentlichungsdatum | 2013-03-23 |
Bewertung | 2.40/5 Insgesamt 20 Bewertungen |
Entwickler | Taylor Brown |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/taylor-brown/mustachio-chrome |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mustachio Redux", "version": "2.0.1", "manifest_version": 2, "description": "Appends moustaches to all faces!", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "Mustachio19enabled.png", "default_title": "Enable \/ Disable Mustachio" }, "icons": { "16": "Mustachio16.png", "48": "Mustachio48.png", "128": "Mustachio128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "mustachio.js", "objectdetect.js", "objectdetect.frontalface.js", "jquery.objectdetect.js", "canvg.js", "rgbcolor.js" ] } ] } |