Quick-add Calculating Calculator

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

Hvad er Quick-add Calculating Calculator?

Quick-add Calculating Calculator er en Chrome-udvidelse udviklet af Derek Hill, og dens hovedfunktion er "Complete simple mathematical functions quickly and easily with a click of the mouse.".

Udvidelsesskærmbilleder

screenshot

Download Quick-add Calculating Calculator-udvidelses-CRX-fil

Download Quick-add Calculating Calculator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
Officiel URL https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
Beskrivelse Complete simple mathematical functions quickly and easily with a click of the mouse.
Filstørrelse 49.92 KB
Antal Installationer 62
Nuværende Version 2.0
Senest Opdateret 2017-04-12
Udgivelsesdato 2017-04-12
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Derek Hill
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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:\/\/*\/*"
            ]
        }
    ]
}