Robux To Money
Replaces Robux value with real-world currency.
Robux To Money란 무엇입니까?
Robux To Money은(는) FrenchToast Studios에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces Robux value with real-world currency."입니다.
확장 프로그램 스크린샷
Robux To Money 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |