pp calculator
Calculates the osu! pp values directly in your web browser
什么是pp calculator?
pp calculator是由abstrakt开发的Chrome扩展程序,该扩展的主要功能是“Calculates the osu! pp values directly in your web browser”。
扩展截图
下载pp calculator扩展crx文件
下载pp calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
🖥️ Calculate how much osu! pp you can earn directly in your web browser 🚀 Up to date with the latest rework: 2022.09 🥁 Support for all game modes (osu!, taiko, mania, catch) 🦭 For support and suggestions join the Discord server found in the "Support" tab
扩展基本信息
名称 | pp calculator |
ID | eoelpnjffjkdmfhfinfbgiejnbgihpdn |
官方URL | https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn |
简介 | Calculates the osu! pp values directly in your web browser |
文件大小 | 1.36 MB |
安装次数 | 32,536 |
当前版本 | 1.2.0 |
更新时间 | 2023-03-29 |
上架时间 | 2022-01-13 |
评分 | 4.94/5 共52次评分 |
开发者 | abstrakt |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://discord.com/invite/Cm5W9QcNXB |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.2.0", "name": "pp calculator", "description": "Calculates the osu! pp values directly in your web browser", "action": { "default_title": "pp calculator", "default_popup": "popup.html", "default_icon": { "128": "icons\/icon_128.png" } }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/osu.ppy.sh\/*" ], "js": [ "content.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self'" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.ppy.sh\/" ], "icons": { "128": "icons\/icon_128.png" } } |