Mustachio Redux

Mustachio Redux

Appends moustaches to all faces!

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}