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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RPN Calculator
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |