RPN Calculator

Adds an RPN calculator as a browser action button.

RPN Calculator क्या है?

RPN Calculator Mike Conca द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an RPN calculator as a browser action button."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RPN Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}