Quick-add Calculating Calculator

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

Vad är Quick-add Calculating Calculator?

Quick-add Calculating Calculator är en Chrome-tillägg utvecklad av Derek Hill, och dess huvudfunktion är "Complete simple mathematical functions quickly and easily with a click of the mouse.".

Tilläggsskärmbilder

screenshot

Ladda ner Quick-add Calculating Calculator-förlängningens CRX-fil

Ladda ner Quick-add Calculating Calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
Officiell webbadress https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
Beskrivning Complete simple mathematical functions quickly and easily with a click of the mouse.
Filstorlek 49.92 KB
Antal Installationer 62
Aktuell Version 2.0
Senast Uppdaterad 2017-04-12
Publiceringsdatum 2017-04-12
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Derek Hill
E-post [email protected]
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
            ]
        }
    ]
}