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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |