o!pp

Calculate PP and beatmap stats for every game mode

What is o!pp?

o!pp is a Chrome extension developed by TheEZIC, and its main feature is "Calculate PP and beatmap stats for every game mode".

Extension Screenshots

screenshot

Download o!pp Extension CRX File

Download o!pp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Calculate performance points (PP) with options to change mods, accuracy, combo, misses etc, for every osu! gamemode. Also displays beatmap stats.
This tool requires osu!api V1 key. You can get in on: 
https://osu.ppy.sh/p/api/
http://old.ppy.sh/p/api/
Extension has open source code. You can report issue or request something:
https://github.com/TheEZIC/O-pp                    

Extension Basic Information

Name o!pp o!pp
ID hjlbhnjnmmfadkobjkmddmgopanllkna
Official URL https://chromewebstore.google.com/detail/opp/hjlbhnjnmmfadkobjkmddmgopanllkna
Description Calculate PP and beatmap stats for every game mode
File Size 401 KB
Installation Count 1,582
Current Version 0.2.1
Last Updated 2021-03-06
Publish Date 2020-07-29
Rating 5.00/5 Total 8 Ratings
Developer TheEZIC
Email [email protected]
Payment Type free
Supported Languages en
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'"
}