RPN Calculator

Adds an RPN calculator as a browser action button.

ما هو RPN Calculator؟

RPN Calculator هو إضافة Chrome تم تطويرها بواسطة Mike Conca، والميزة الرئيسية لها هي "Adds an RPN calculator as a browser action button.".

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

screenshot

تحميل ملف CRX للإضافة RPN Calculator

قم بتنزيل ملفات الامتداد RPN Calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension adds a convenient reverse Polish notation (RPN) calculator as a browser action button. Also called postfix, RPN calculators take their operators after the operands.

For example, to get the sum of two and three on a normal calculator, you would hit "2 + 3 =". On an RPN calculator, you would hit "2 Enter 3 +". In general, RPN calculators require fewer keystrokes over a series of extended operations.

It may seem strange at first, but once you get used to it, you'll never go back. HP made a series of extremely popular RPN calculators back in the 1970's and 1980's

Known Issues:
1) Calculator doesn't automatically get focus when displayed.
2) Keyboard only. Clicking on keys and commands doesn't work.                    

معلومات أساسية عن التمديد

الاسم RPN Calculator RPN Calculator
ID dioedokjeinagmkffeoffbiiclofpjgd
عنوان URL الرسمي https://chromewebstore.google.com/detail/rpn-calculator/dioedokjeinagmkffeoffbiiclofpjgd
الوصف Adds an RPN calculator as a browser action button.
حجم الملف 12.28 KB
عدد التثبيتات 789
النسخة الحالية 1.0
آخر تحديث 2017-10-04
تاريخ النشر 2017-10-04
تقييم 5.00/5 مجموع تقييمات 7
المطور Mike Conca
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Adds an RPN calculator as a browser action button.",
    "manifest_version": 2,
    "name": "RPN Calculator",
    "version": "1.0",
    "homepage_url": "https:\/\/github.com\/mconca\/rpn-web-ext",
    "icons": {
        "32": "icons\/calc-32.png",
        "48": "icons\/calc-48.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/calc-32.png",
            "48": "icons\/calc-48.png"
        },
        "default_title": "RPN Calculator",
        "default_popup": "popup\/rpncalc.html"
    }
}