Smart Calc

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

Cos'è Smart Calc?

Smart Calc è un'estensione di Chrome sviluppata da andersonfetter, e la sua funzione principale è "Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Smart Calc

Scarica i file di estensione Smart Calc in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
URL Ufficiale https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
Descrizione Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
Dimensione del File 35.43 KB
Conteggio Installazioni 25
Versione Corrente 1.0
Ultimo Aggiornamento 2016-04-27
Data di Pubblicazione 2016-04-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore andersonfetter
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://www.afetter.com/license
Lingue Supportate 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
    }
}