Programmer's Calculator
Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more.
Was ist Programmer's Calculator?
Programmer's Calculator ist eine Chrome-Erweiterung, die von Andrey Shemetov entwickelt wurde, und ihr Hauptmerkmal ist "Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more.".
Erweiterungsscreenshots
Programmer's Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Programmer's Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Powerful command-line calculator. Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and way more. It's easy, powerful and extremely convenient. Give it a try! Let me know if you want other functions added. Functions: ✓ Command line where any combination of digits, functions, units can be entered. Calculator will analyze the expression and show result in all supported number basis. Special commands include 'help' (shows detailed function description), 'clear' (clears history), 'ts' (converts UNIX timestamp to human time), 'color' (performs web color conversion), 'diff' (calculates the difference in between two dates) and 'age' (calculates age in various units). ✓ Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp). ✓ Expression parser by math.js. There are hundreds of functions, press F1 for help. ✓ Web color conversion supported by chroma.js. ✓ Graph plotter supported by dygraphs. ✓ Recently used expressions stored into history. History can be reviewed by clicking on history button or by pressing Ctrl+Down. ✓ Click on 'Exp' or 'Res' labels copies expression or result to clipboard. Hold Ctrl for copy non-formatted result. ✓ Calculator can be activated by pressing Ctrl+Shift+6. Keyboard shortcut can be changed in preferences. ✓ Integration with context menu - calculator can be opened with selected text. The extension is also available for Firefox at https://addons.mozilla.org/en-US/firefox/addon/programmer-s-calculator/. Thank you for being interested in Programmer's Calculator. Please submit your suggestions and report issues on https://bitbucket.org/ashemetov/programmerscalculator/issues. You can contribute by helping translate SelectionSK on Crowdin: https://crwd.in/programmerscalculator.
Grundlegende Informationen zur Erweiterung
Name | Programmer's Calculator |
ID | pcddapobilfljlfllgjlfihconhklinb |
Offizielle URL | https://chromewebstore.google.com/detail/programmers-calculator/pcddapobilfljlfllgjlfihconhklinb |
Beschreibung | Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more. |
Dateigröße | 456 KB |
Installationsanzahl | 435 |
Aktuelle Version | 1.3 |
Letztes Update | 2023-01-08 |
Veröffentlichungsdatum | 2020-03-25 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Andrey Shemetov |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://bitbucket.org/ashemetov/programmerscalculator/wiki/Home |
Hilfeseite URL | https://bitbucket.org/ashemetov/programmerscalculator/issues?status=new&status=open |
Unterstützte Sprachen | en,tr,es,it,pt-BR,pt-PT,ro,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Programmer's Calculator", "author": "Andrey Shemetov", "description": "__MSG_addonDescChr__", "version": "1.3", "default_locale": "en", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx9+BM3jATxk9N7IDtvjRW55yhHxfmmNoZ\/fMkprYDNp6oHt\/ZEVVATjmuvlZFvxHe0sSkYqKpRxBAgBJF1qw6Wq1lqUNw3p+QUWJ2v4mFJ9FcGv6uGs0HT2aIPoS7PAkYgY6LmZPL57j4rwiw64uaw2iS7+b\/++LjsOL8hY4PZ3hs25isDs6reIVz+XAR6Nie9AaUA85SBUjnwZoVZNGAQcsdqP9nJcIMuJv54oUMhqMZjLKPaE3p2VIYxc\/+b6VgXmTta+WSF4WYDGFJeC\/cV6qLoRaAmfN4rhm4Z306SfAGzljKRw9k9AeCNgmK4062UewLcZ+VIm13p95GI0Y6wIDAQAB", "icons": { "16": "icons\/calc_16.png", "24": "icons\/calc_24.png", "32": "icons\/calc_32.png", "48": "icons\/calc_48.png", "64": "icons\/calc_64.png", "128": "icons\/calc_128.png" }, "browser_action": { "default_icon": { "16": "icons\/calc_16.png", "24": "icons\/calc_24.png", "32": "icons\/calc_32.png", "48": "icons\/calc_48.png", "64": "icons\/calc_64.png", "128": "icons\/calc_128.png" }, "default_title": "Programmer's Calculator", "default_popup": "popup\/popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+6" }, "description": "Open Programmer''s Calc" } }, "options_ui": { "page": "prefs\/prefs.html", "open_in_tab": true }, "background": { "scripts": [ "common.js", "background.js" ] }, "permissions": [ "alarms", "clipboardWrite", "contextMenus", "notifications", "storage" ] } |