RoKing
Providing useful features on Roblox to make your life easier.
什么是RoKing?
RoKing是由KingOfHungry开发的Chrome扩展程序,该扩展的主要功能是“Providing useful features on Roblox to make your life easier.”。
扩展截图
下载RoKing扩展crx文件
下载RoKing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | RoKing |
ID | nobboemklndlchmiidhpmpiodhlnimej |
官方URL | https://chromewebstore.google.com/detail/roking/nobboemklndlchmiidhpmpiodhlnimej |
简介 | Providing useful features on Roblox to make your life easier. |
文件大小 | 20.73 KB |
安装次数 | 10,399 |
当前版本 | 1.9.78 |
更新时间 | 2023-06-01 |
上架时间 | 2020-11-29 |
评分 | 4.08/5 共37次评分 |
开发者 | KingOfHungry |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://privacy-policy.jacossaurusrex.repl.co |
支持的语言 | 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" ] } ] } |