Mustachio Redux
Appends moustaches to all faces!
什麼是Mustachio Redux?
Mustachio Redux是由Taylor Brown開發的Chrome擴展程式,該擴展的主要功能是“Appends moustaches to all faces!”。
擴展截圖
下載Mustachio Redux擴展crx文件
下載Mustachio Redux擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | hbnnipmnpgiepegnlmekieblhjmchmbf |
| 官方網址 | https://chromewebstore.google.com/detail/mustachio-redux/hbnnipmnpgiepegnlmekieblhjmchmbf |
| 簡介 | Appends moustaches to all faces! |
| 檔案大小 | 495 KB |
| 安裝次數 | 375 |
| 目前版本 | 2.0.1 |
| 更新時間 | 2013-03-23 |
| 上架時間 | 2013-03-23 |
| 評分 | 2.40/5 共 20 次評分 |
| 開發者 | Taylor Brown |
| 付費類型 | free |
| 擴展官網 | https://github.com/taylor-brown/mustachio-chrome |
| 支援的語言 | 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"
]
}
]
} | |