o!pp

o!pp

Calculate PP and beatmap stats for every game mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "o!pp",
  "version": "0.2.1",
  "description": "Calculate PP and beatmap stats for every game mode",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "O!pp",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://osu.ppy.sh/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://osu.ppy.sh/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}