RoKing
Providing useful features on Roblox to make your life easier.
Cos'è RoKing?
RoKing è un'estensione di Chrome sviluppata da KingOfHungry, e la sua funzione principale è "Providing useful features on Roblox to make your life easier.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RoKing
Scarica i file di estensione RoKing 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
Providing useful features on Roblox to make your life easier. RoKing provides a plethora of useful features for Roblox users and developers, including: (For users...) Follows You - A feature that shows if a user you are viewing follows you. Mutuals - A feature that displays how many and who are mutual friends with you. Quick Play - A feature that adds a play button to every game card, allowing for you to join games quickly! (For developers...) Sales Tracker - A way to track Clothing and UGC sales easily and efficiently, with integration into Roblox games. Item Editor - A way to edit multiple pieces of clothing items at the click of a single button. Group Ranker - An easy way for designers and UGC creators to rank their users based on how many items they have.
Informazioni di Base sull'Estensione
Nome | RoKing |
ID | nobboemklndlchmiidhpmpiodhlnimej |
URL Ufficiale | https://chromewebstore.google.com/detail/roking/nobboemklndlchmiidhpmpiodhlnimej |
Descrizione | Providing useful features on Roblox to make your life easier. |
Dimensione del File | 20.73 KB |
Conteggio Installazioni | 10,399 |
Versione Corrente | 1.9.78 |
Ultimo Aggiornamento | 2023-06-01 |
Data di Pubblicazione | 2020-11-29 |
Valutazione | 4.08/5 Totale 37 Valutazioni |
Sviluppatore | KingOfHungry |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://privacy-policy.jacossaurusrex.repl.co |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RoKing", "version": "1.9.78", "description": "Providing useful features on Roblox to make your life easier.", "manifest_version": 2, "permissions": [ "storage", "*:\/\/*.roblox.com\/*" ], "browser_action": { "default_icon": "king-icon.png", "default_title": "RoKing", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.roblox.com\/groups\/configure?id=*" ], "run_at": "document_start", "js": [ "king.js", "roblox.js", "ranker\/ranker.js" ], "css": [ "ranker\/ranker.css" ] } ] } |