Refined Roblox
Simplifies the Roblox interface and adds useful features
Qu'est-ce que Refined Roblox ?
Refined Roblox est une extension Chrome développée par Elijah, et sa fonction principale est "Simplifies the Roblox interface and adds useful features".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Refined Roblox
Téléchargez les fichiers d'extension Refined Roblox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Refined Roblox |
ID | nmonfedkjkdejhdinghojfhjnedhmeao |
URL Officiel | https://chromewebstore.google.com/detail/refined-roblox/nmonfedkjkdejhdinghojfhjnedhmeao |
Description | Simplifies the Roblox interface and adds useful features |
Taille du Fichier | 402 KB |
Nombre d'Installations | 208 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2022-11-15 |
Date de Publication | 2022-07-16 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | Elijah |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gitlab.com/refined-roblox/refined-roblox |
URL de la Page d'Aide | https://gitlab.com/refined-roblox/refined-roblox/-/issues |
Langues Prises en Charge | 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" } } |