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 | 
| 官方網址 | 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\/"
    ]
}  |  |