Refined Roblox
Simplifies the Roblox interface and adds useful features
什麼是Refined Roblox?
Refined Roblox是由Elijah開發的Chrome擴展程式,該擴展的主要功能是“Simplifies the Roblox interface and adds useful features”。
擴展截圖
下載Refined Roblox擴展crx文件
下載Refined Roblox擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension adds in some small refinements to the Roblox website.
Highlights:
- User avatars next to creator names
- Group join requests and member lists include a user's join date.
- Markdown support in game descriptions
- Low quality comments are hidden 擴展基本資訊
| 名稱 | |
| ID | nmonfedkjkdejhdinghojfhjnedhmeao |
| 官方網址 | https://chromewebstore.google.com/detail/refined-roblox/nmonfedkjkdejhdinghojfhjnedhmeao |
| 簡介 | Simplifies the Roblox interface and adds useful features |
| 檔案大小 | 402 KB |
| 安裝次數 | 208 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2022-11-15 |
| 上架時間 | 2022-07-16 |
| 評分 | 4.50/5 共 2 次評分 |
| 開發者 | Elijah |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://gitlab.com/refined-roblox/refined-roblox |
| 說明頁面URL | https://gitlab.com/refined-roblox/refined-roblox/-/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Refined Roblox",
"version": "1.0.1",
"description": "Simplifies the Roblox interface and adds useful features",
"homepage_url": "https:\/\/gitlab.com\/refined-roblox\/refined-roblox",
"manifest_version": 3,
"minimum_chrome_version": "91",
"applications": {
"gecko": {
"id": "{24109a96-d720-4740-8bc6-ffae553ec7c8}",
"strict_min_version": "91.0"
}
},
"permissions": [
"storage"
],
"optional_permissions": [
"*:\/\/*\/*"
],
"host_permissions": [
"https:\/\/www.roblox.com\/*",
"https:\/\/web.roblox.com\/*",
"https:\/\/users.roblox.com\/*",
"https:\/\/thumbnails.roblox.com\/*",
"*:\/\/*\/*"
],
"icons": {
"128": "icon.png"
},
"options_ui": {
"page": "options.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.roblox.com\/*",
"https:\/\/web.roblox.com\/*"
],
"exclude_matches": [
"https:\/\/*\/login\/*"
],
"css": [
"refined-roblox.css"
],
"js": [
"refined-roblox.js"
]
}
],
"action": {
"default_icon": "icon.png"
}
} | |