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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}