Currency calculator

Currency calculator

Vad är Currency calculator?

Currency calculator är en Chrome-tillägg utvecklad av Eretin Oleg, och dess huvudfunktion är "Currency calculator".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Currency calculator-förlängningens CRX-fil

Ladda ner Currency calculator-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

                        Allow user to convert values between different currencies.
Key features:
- Support 5 different currencies
- Provide user with up to date currencies rates
- Allow to set default currency
- Support 2 locales: english and russian                    

Grundläggande Information om Tillägg

Namn Currency calculator Currency calculator
ID abjmkppdokelmiilmojnbcplckdofjcj
Officiell webbadress https://chrome.google.com/webstore/detail/currency-calculator/abjmkppdokelmiilmojnbcplckdofjcj
Beskrivning Currency calculator
Filstorlek 284 KB
Antal Installationer 24
Aktuell Version 0.1
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 1.50/5 Totalt 2 Betyg
Utvecklare Eretin Oleg
E-post [email protected]
Betalningssätt free
Stödda Språk en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.1",
    "description": "__MSG_extName__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/api.fixer.io\/",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}