ROBUX to Dollars Display
Converts ROBUX amounts to American Dollars on the ROBLOX website.
ما هو ROBUX to Dollars Display؟
ROBUX to Dollars Display هو إضافة Chrome تم تطويرها بواسطة Stephen Leitnick، والميزة الرئيسية لها هي "Converts ROBUX amounts to American Dollars on the ROBLOX website.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ROBUX to Dollars Display
قم بتنزيل ملفات الامتداد ROBUX to Dollars Display بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Automatically appends the American Dollar amount to all ROBUX listings on the ROBLOX website. The conversion is based on the Developers Exchange rate, not the purchase rate. This is most useful for ROBLOX developers that use DevEx.
معلومات أساسية عن التمديد
الاسم | |
ID | cjidafeffoionbhpaknjkmpgikdceojm |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm |
الوصف | Converts ROBUX amounts to American Dollars on the ROBLOX website. |
حجم الملف | 127 KB |
عدد التثبيتات | 10,000 |
النسخة الحالية | 1.1.5 |
آخر تحديث | 2017-03-02 |
تاريخ النشر | 2017-03-02 |
تقييم | 3.48/5 مجموع تقييمات 362 |
المطور | Stephen Leitnick |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ROBUX to Dollars Display", "description": "Converts ROBUX amounts to American Dollars on the ROBLOX website.", "version": "1.1.5", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/www.roblox.com\/*", "https:\/\/www.roblox.com\/*" ], "js": [ "convert.js", "tracking.js" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs" ] } |