Quick-add Calculating Calculator

Complete simple mathematical functions quickly and easily with a click of the mouse.

Cos'è Quick-add Calculating Calculator?

Quick-add Calculating Calculator è un'estensione di Chrome sviluppata da Derek Hill, e la sua funzione principale è "Complete simple mathematical functions quickly and easily with a click of the mouse.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Quick-add Calculating Calculator

Scarica i file di estensione Quick-add Calculating Calculator 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

                        Click the extension icon to toggle the Calculator. Click on any numbers you would like to add to your equation and see a total in real-time. Keyboard modifiers: SHIFT = subtract, CTRL = multiply, CTRL+SHIFT = divide, RELEASE = add                    

Informazioni di Base sull'Estensione

Nome Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
URL Ufficiale https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
Descrizione Complete simple mathematical functions quickly and easily with a click of the mouse.
Dimensione del File 49.92 KB
Conteggio Installazioni 62
Versione Corrente 2.0
Ultimo Aggiornamento 2017-04-12
Data di Pubblicazione 2017-04-12
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Derek Hill
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick-add Calculating Calculator",
    "version": "2.0",
    "description": "Complete simple mathematical functions quickly and easily with a click of the mouse.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "off.png"
        ],
        "default_icon": "off.png",
        "default_title": "Quick-add Calculating Calculator"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}