Find Mako!

Find Mako!

Can you find Mako Mankanshoku hiding in webpages?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.1.0",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Find Mako!",
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "util.js",
        "constants.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "*://*/*"
  ],
  "web_accessible_resources": [
    "imgs/charactor/*.png",
    "imgs/charactor/*.gif",
    "imgs/charactor/*.jpeg",
    "imgs/charactor/*.jpg"
  ]
}