Quick-add Calculating Calculator

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

What is Quick-add Calculating Calculator?

Quick-add Calculating Calculator is a Chrome extension developed by Derek Hill, and its main feature is "Complete simple mathematical functions quickly and easily with a click of the mouse.".

Extension Screenshots

screenshot

Download Quick-add Calculating Calculator Extension CRX File

Download Quick-add Calculating Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
Official URL https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
Description Complete simple mathematical functions quickly and easily with a click of the mouse.
File Size 49.92 KB
Installation Count 62
Current Version 2.0
Last Updated 2017-04-12
Publish Date 2017-04-12
Rating 3.67/5 Total 3 Ratings
Developer Derek Hill
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}