Refined Roblox
Simplifies the Roblox interface and adds useful features
Cos'è Refined Roblox?
Refined Roblox è un'estensione di Chrome sviluppata da Elijah, e la sua funzione principale è "Simplifies the Roblox interface and adds useful features".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Refined Roblox
Scarica i file di estensione Refined Roblox in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | nmonfedkjkdejhdinghojfhjnedhmeao |
| URL Ufficiale | https://chromewebstore.google.com/detail/refined-roblox/nmonfedkjkdejhdinghojfhjnedhmeao |
| Descrizione | Simplifies the Roblox interface and adds useful features |
| Dimensione del File | 402 KB |
| Conteggio Installazioni | 208 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2022-11-15 |
| Data di Pubblicazione | 2022-07-16 |
| Valutazione | 4.50/5 Totale 2 Valutazioni |
| Sviluppatore | Elijah |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://gitlab.com/refined-roblox/refined-roblox |
| URL della Pagina di Aiuto | https://gitlab.com/refined-roblox/refined-roblox/-/issues |
| Lingue Supportate | 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"
}
} | |