RPN Calculator
Adds an RPN calculator as a browser action button.
Wat is RPN Calculator?
RPN Calculator is een Chrome-extensie ontwikkeld door Mike Conca, en de belangrijkste functie is "Adds an RPN calculator as a browser action button.".
Extensie Screenshots
Download het CRX-bestand van de extensie RPN Calculator
Download RPN Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | dioedokjeinagmkffeoffbiiclofpjgd |
| Officiële URL | https://chromewebstore.google.com/detail/rpn-calculator/dioedokjeinagmkffeoffbiiclofpjgd |
| Beschrijving | Adds an RPN calculator as a browser action button. |
| Bestandsgrootte | 12.28 KB |
| Aantal Installaties | 789 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2017-10-04 |
| Publicatiedatum | 2017-10-04 |
| Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | Mike Conca |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |