osu! preview
Preview an osu! beatmap in your browser.
什么是osu! preview?
osu! preview是由Jerry Zhu开发的Chrome扩展程序,该扩展的主要功能是“Preview an osu! beatmap in your browser.”。
扩展截图
下载osu! preview扩展crx文件
下载osu! preview扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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                     扩展基本信息
| 名称 |   |  
| 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\/"
    ]
}  |  |