Smart Calc

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

Co to jest Smart Calc?

Smart Calc to rozszerzenie Chrome opracowane przez andersonfetter, a jego główną funkcją jest „Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Smart Calc

Pobierz pliki rozszerzeń Smart Calc 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
Oficjalny URL https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
Opis Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
Rozmiar pliku 35.43 KB
Liczba instalacji 25
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-04-27
Data Publikacji 2016-04-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper andersonfetter
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności http://www.afetter.com/license
Obsługiwane Języki 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
    }
}