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 |
| 公式URL | 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 |
| Eメール | [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"
}
} | |