Quick-add Calculating Calculator

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

什么是Quick-add Calculating Calculator?

Quick-add Calculating Calculator是由Derek Hill开发的Chrome扩展程序,该扩展的主要功能是“Complete simple mathematical functions quickly and easily with a click of the mouse.”。

扩展截图

screenshot

下载Quick-add Calculating Calculator扩展crx文件

下载Quick-add Calculating Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Quick-add Calculating Calculator Quick-add Calculating Calculator
ID laogkhebjhpkikbhofgkfopcmfknmimf
官方URL https://chrome.google.com/webstore/detail/quick-add-calculating-cal/laogkhebjhpkikbhofgkfopcmfknmimf
简介 Complete simple mathematical functions quickly and easily with a click of the mouse.
文件大小 49.92 KB
安装次数 62
当前版本 2.0
更新时间 2017-04-12
上架时间 2017-04-12
评分 3.67/5 共3次评分
开发者 Derek Hill
电子邮箱 [email protected]
付费类型 free
支持的语言 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:\/\/*\/*"
            ]
        }
    ]
}