HabitRPG Interactive

HabitRPG Interactive

Interact with HabitRPG Items on the fly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HabitRPG Interactive",
  "version": "1.5.4",
  "manifest_version": 2,
  "description": "Interact with HabitRPG Items on the fly",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "main.min.js"
      ],
      "run_at": "document_end"
    }
  ]
}