Hatsune Miku Footer

Hatsune Miku Footer

Adds a cyan footer with the text "hatsune miku" to every page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hatsune Miku Footer",
  "version": "1.1",
  "description": "Adds a cyan footer with the text \"hatsune miku\" to every page.",
  "icons": {
    "90": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "miku.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "thanks.html",
    "default_title": "Hatsune Miku Footer"
  }
}