Quick-add Calculating Calculator

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

Wat is Quick-add Calculating Calculator?

Quick-add Calculating Calculator is een Chrome-extensie ontwikkeld door Derek Hill, en de belangrijkste functie is "Complete simple mathematical functions quickly and easily with a click of the mouse.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Quick-add Calculating Calculator

Download Quick-add Calculating Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
Officiële URL https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
Beschrijving Complete simple mathematical functions quickly and easily with a click of the mouse.
Bestandsgrootte 49.92 KB
Aantal Installaties 62
Huidige Versie 2.0
Laatst Bijgewerkt 2017-04-12
Publicatiedatum 2017-04-12
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Derek Hill
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}