Attack on Titan Cursors

Attack on Titan Cursors

Replace the standard cursor with a cool cursor from the anime Attack on Titan!

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_appName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.1",
  "browser_action": {
    "default_title": "Click to open Attack on Titan Cursors.",
    "default_icon": {
      "128": "img/icon.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "app.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "*://*/*"
  ]
}