RPN Calculator
Adds an RPN calculator as a browser action button.
Cos'è RPN Calculator?
RPN Calculator è un'estensione di Chrome sviluppata da Mike Conca, e la sua funzione principale è "Adds an RPN calculator as a browser action button.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RPN Calculator
Scarica i file di estensione RPN Calculator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | RPN Calculator |
ID | dioedokjeinagmkffeoffbiiclofpjgd |
URL Ufficiale | https://chromewebstore.google.com/detail/rpn-calculator/dioedokjeinagmkffeoffbiiclofpjgd |
Descrizione | Adds an RPN calculator as a browser action button. |
Dimensione del File | 12.28 KB |
Conteggio Installazioni | 789 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-10-04 |
Data di Pubblicazione | 2017-10-04 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | Mike Conca |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |