RPN Calculator

Adds an RPN calculator as a browser action button.

什麼是RPN Calculator?

RPN Calculator是由Mike Conca開發的Chrome擴展程式,該擴展的主要功能是“Adds an RPN calculator as a browser action button.”。

擴展截圖

screenshot

下載RPN Calculator擴展crx文件

下載RPN Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}