pp calculator
Calculates the osu! pp values directly in your web browser
ما هو pp calculator؟
pp calculator هو إضافة Chrome تم تطويرها بواسطة abstrakt، والميزة الرئيسية لها هي "Calculates the osu! pp values directly in your web browser".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة pp calculator
قم بتنزيل ملفات الامتداد pp calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
🖥️ 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 |
عنوان صفحة المساعدة | 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" } } |