Currency calculator

Currency calculator

Co to jest Currency calculator?

Currency calculator to rozszerzenie Chrome opracowane przez Eretin Oleg, a jego główną funkcją jest „Currency calculator”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Currency calculator

Pobierz pliki rozszerzeń Currency calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Currency calculator Currency calculator
ID abjmkppdokelmiilmojnbcplckdofjcj
Oficjalny URL https://chrome.google.com/webstore/detail/currency-calculator/abjmkppdokelmiilmojnbcplckdofjcj
Opis Currency calculator
Rozmiar pliku 284 KB
Liczba instalacji 24
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 1.50/5 Łącznie 2 Oceny
Deweloper Eretin Oleg
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}