Smart Calc

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

O que é Smart Calc?

Smart Calc é uma extensão do Chrome desenvolvida por andersonfetter, e sua principal característica é "Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Smart Calc

Baixe arquivos de extensão Smart Calc no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Smart Calc Smart Calc
ID kbmdekffinpekjapcpgchgpkfokklaaj
URL Oficial https://chromewebstore.google.com/detail/smart-calc/kbmdekffinpekjapcpgchgpkfokklaaj
Descrição Select number in the web page and automatically (+, -, /, *) with the previous values. Also you can edit the function by your own.
Tamanho do Arquivo 35.43 KB
Contagem de Instalações 25
Versão Atual 1.0
Última Atualização 2016-04-27
Data de Publicação 2016-04-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor andersonfetter
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://www.afetter.com/license
Idiomas Suportados 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
    }
}