Mustachio Redux

Appends moustaches to all faces!

Что такое Mustachio Redux?

Mustachio Redux - это расширение Chrome, разработанное Taylor Brown, и его основная функция - "Appends moustaches to all faces!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Mustachio Redux

Скачайте файлы расширений 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                    

Основная информация о расширении

Название Mustachio Redux Mustachio Redux
ID hbnnipmnpgiepegnlmekieblhjmchmbf
Официальный URL 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"
            ]
        }
    ]
}