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 هو إضافة Chrome تم تطويرها بواسطة Derek Hill، والميزة الرئيسية لها هي "Complete simple mathematical functions quickly and easily with a click of the mouse.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Quick-add Calculating Calculator

قم بتنزيل ملفات الامتداد Quick-add Calculating Calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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:\/\/*\/*"
            ]
        }
    ]
}