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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
            ]
        }
    ]
}