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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

RoKing 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}