Robux To Money

Replaces Robux value with real-world currency.

Robux To Moneyคืออะไร?

Robux To Money เป็นส่วนขยายของ Chrome ที่พัฒนาโดย FrenchToast Studios และคุณลักษณะหลักของมันคือ "Replaces Robux value with real-world currency."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Robux To Money

ดาวน์โหลดไฟล์ส่วนขยาย Robux To Money ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Robux to Money is a Chrome extension that aims to simplify a Roblox developer's life.  It automatically converts a user's Robux value to a corresponding real-world currency value based on Jan 25, 2021 DevEx and currency conversion rates.  Currently included currencies are USA (USD), Canada (CAD), United Kingdom (GBP), China (CNY), India (INR), Australia (AUD).  Save yourself the hassle of converting your Robux earnings manually and download today!

On Github if you would like to contribute: https://github.com/Frenchtoast0/Robux2Money/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Robux To Money Robux To Money
ID fedpmdfkilhcadoklbcdjokkjhpnhgma
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/robux-to-money/fedpmdfkilhcadoklbcdjokkjhpnhgma
คำอธิบาย Replaces Robux value with real-world currency.
ขนาดไฟล์ 69.38 KB
จำนวนการติดตั้ง 5,197
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2021-01-30
วันที่เผยแพร่ 2020-06-07
คะแนน 2.80/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา FrenchToast Studios
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robux To Money",
    "short_name": "Robux2Money",
    "description": "Replaces Robux value with real-world currency.",
    "version": "1.5",
    "incognito": "split",
    "author": "Frenchtoast0",
    "browser_action": {
        "default_title": "Robux2Money",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icons\/goldrobux_16.png",
            "38": "icons\/goldrobux_48.png"
        },
        "icons": {
            "12": "icons\/goldrobux_12.png",
            "16": "icons\/goldrobux_16.png",
            "48": "icons\/goldrobux_48.png",
            "128": "icons\/goldrobux_48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.roblox.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}