Quick-add Calculating Calculator

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

Was ist Quick-add Calculating Calculator?

Quick-add Calculating Calculator ist eine Chrome-Erweiterung, die von Derek Hill entwickelt wurde, und ihr Hauptmerkmal ist "Complete simple mathematical functions quickly and easily with a click of the mouse.".

Erweiterungsscreenshots

screenshot

Quick-add Calculating Calculator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick-add Calculating Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
Offizielle URL https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
Beschreibung Complete simple mathematical functions quickly and easily with a click of the mouse.
Dateigröße 49.92 KB
Installationsanzahl 62
Aktuelle Version 2.0
Letztes Update 2017-04-12
Veröffentlichungsdatum 2017-04-12
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Derek Hill
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
            ]
        }
    ]
}