ROBUX to Dollars Display

Converts ROBUX amounts to American Dollars on the ROBLOX website.

Vad är ROBUX to Dollars Display?

ROBUX to Dollars Display är en Chrome-tillägg utvecklad av Stephen Leitnick, och dess huvudfunktion är "Converts ROBUX amounts to American Dollars on the ROBLOX website.".

Tilläggsskärmbilder

screenshot

Ladda ner ROBUX to Dollars Display-förlängningens CRX-fil

Ladda ner ROBUX to Dollars Display-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ROBUX to Dollars Display ROBUX to Dollars Display
ID cjidafeffoionbhpaknjkmpgikdceojm
Officiell webbadress https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm
Beskrivning Converts ROBUX amounts to American Dollars on the ROBLOX website.
Filstorlek 127 KB
Antal Installationer 10,000
Aktuell Version 1.1.5
Senast Uppdaterad 2017-03-02
Publiceringsdatum 2017-03-02
Betyg 3.48/5 Totalt 362 Betyg
Utvecklare Stephen Leitnick
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}