Smart Calc

Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.

Что такое Smart Calc?

Smart Calc - это расширение Chrome, разработанное andersonfetter, и его основная функция - "Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.".

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

screenshot
screenshot
screenshot

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

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

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

                        This is a simple way to make math. Highlighting text in any website. The default function is sum, but you can easely change it jut press the other function (+, -, /, *). On the icon the color indicates which function is selected. For the most advanced users you can edit by yourself the equations by using the pop up page.                    

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

Название Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
Официальный URL https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
Описание Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
Размер файла 35.43 KB
Количество установок 25
Текущая Версия 1.0
Последнее Обновление 2016-04-27
Дата публикации 2016-04-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик andersonfetter
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://www.afetter.com/license
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Calc",
    "description": "Select number in the web page and automatically (+, -, \/, *) with the previous values. Also you can edit the function by your own.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}