osu! preview

Preview an osu! beatmap in your browser.

ما هو osu! preview؟

osu! preview هو إضافة Chrome تم تطويرها بواسطة Jerry Zhu، والميزة الرئيسية لها هي "Preview an osu! beatmap in your browser.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة osu! preview

قم بتنزيل ملفات الامتداد osu! preview بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension allows you to preview the gameplay of a beatmap without having to download the map.

  -  Supports most osu! standard maps and osu! mania maps (may break on older maps).
  -  Plays preview audio synchronized with hit objects
  -  Can seek to any point in the map                    

معلومات أساسية عن التمديد

الاسم osu! preview osu! preview
ID higcadegkhhhjcljhpggammlhmlbdcmc
عنوان URL الرسمي https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc
الوصف Preview an osu! beatmap in your browser.
حجم الملف 380 KB
عدد التثبيتات 4,166
النسخة الحالية 0.0.6
آخر تحديث 2022-01-25
تاريخ النشر 2019-03-07
تقييم 4.00/5 مجموع تقييمات 27
المطور Jerry Zhu
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/JerryZhu99/osu-preview
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "osu! preview",
    "description": "Preview an osu! beatmap in your browser.",
    "version": "0.0.6",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "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",
        "https:\/\/*.ppy.sh\/",
        "http:\/\/*.ppy.sh\/"
    ]
}