ROBUX to Dollars Display

Converts ROBUX amounts to American Dollars on the ROBLOX website.

Was ist ROBUX to Dollars Display?

ROBUX to Dollars Display ist eine Chrome-Erweiterung, die von Stephen Leitnick entwickelt wurde, und ihr Hauptmerkmal ist "Converts ROBUX amounts to American Dollars on the ROBLOX website.".

Erweiterungsscreenshots

screenshot

ROBUX to Dollars Display-Erweiterungs-CRX-Datei herunterladen

Laden Sie ROBUX to Dollars Display-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ROBUX to Dollars Display ROBUX to Dollars Display
ID cjidafeffoionbhpaknjkmpgikdceojm
Offizielle URL https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm
Beschreibung Converts ROBUX amounts to American Dollars on the ROBLOX website.
Dateigröße 127 KB
Installationsanzahl 10,000
Aktuelle Version 1.1.5
Letztes Update 2017-03-02
Veröffentlichungsdatum 2017-03-02
Bewertung 3.48/5 Insgesamt 362 Bewertungen
Entwickler Stephen Leitnick
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}