RoKing

Providing useful features on Roblox to make your life easier.

O que é RoKing?

RoKing é uma extensão do Chrome desenvolvida por KingOfHungry, e sua principal característica é "Providing useful features on Roblox to make your life easier.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão RoKing

Baixe arquivos de extensão RoKing no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome RoKing RoKing
ID nobboemklndlchmiidhpmpiodhlnimej
URL Oficial https://chromewebstore.google.com/detail/roking/nobboemklndlchmiidhpmpiodhlnimej
Descrição Providing useful features on Roblox to make your life easier.
Tamanho do Arquivo 20.73 KB
Contagem de Instalações 10,399
Versão Atual 1.9.78
Última Atualização 2023-06-01
Data de Publicação 2020-11-29
Classificação 4.08/5 Total de 37 Avaliações
Desenvolvedor KingOfHungry
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://privacy-policy.jacossaurusrex.repl.co
Idiomas Suportados 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"
            ]
        }
    ]
}