ezpp!

ezpp!

Directly calculate pp for a beatmap in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ezpp!",
  "description": "Calculate pp for a beatmap directly in your browser.",
  "version": "1.10.2",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://osu.ppy.sh/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "icon48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "https://*.ppy.sh/",
    "http://*.ppy.sh/"
  ]
}