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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}