Currency calculator

Currency calculator

Что такое Currency calculator?

Currency calculator - это расширение Chrome, разработанное Eretin Oleg, и его основная функция - "Currency calculator".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Currency calculator

Скачайте файлы расширений Currency calculator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Currency calculator Currency calculator
ID abjmkppdokelmiilmojnbcplckdofjcj
Официальный URL https://chrome.google.com/webstore/detail/currency-calculator/abjmkppdokelmiilmojnbcplckdofjcj
Описание Currency calculator
Размер файла 284 KB
Количество установок 24
Текущая Версия 0.1
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 1.50/5 Всего 2 оценок
Разработчик Eretin Oleg
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
    }
}