Smart Calc

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

¿Qué es Smart Calc?

Smart Calc es una extensión de Chrome desarrollada por andersonfetter, y su función principal es "Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Smart Calc

Descarga archivos de extensión Smart Calc en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
URL Oficial https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
Descripción Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
Tamaño del Archivo 35.43 KB
Cantidad de Instalaciones 25
Versión Actual 1.0
Última Actualización 2016-04-27
Fecha de Publicación 2016-04-27
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador andersonfetter
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad http://www.afetter.com/license
Idiomas Soportados 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
    }
}