Programmer's Calculator
Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more.
Co je Programmer's Calculator?
Programmer's Calculator je rozšíření Chrome vyvinuté Andrey Shemetov, a jeho hlavní funkcí je „Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Programmer's Calculator
Stáhněte si soubory rozšíření Programmer's Calculator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Programmer's Calculator |
ID | pcddapobilfljlfllgjlfihconhklinb |
Oficiální URL | https://chromewebstore.google.com/detail/programmers-calculator/pcddapobilfljlfllgjlfihconhklinb |
Popis | Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more. |
Velikost souboru | 456 KB |
Počet instalací | 435 |
Aktuální Verze | 1.3 |
Poslední Aktualizace | 2023-01-08 |
Datum Vydání | 2020-03-25 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | Andrey Shemetov |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://bitbucket.org/ashemetov/programmerscalculator/wiki/Home |
URL Stránky Nápovědy | https://bitbucket.org/ashemetov/programmerscalculator/issues?status=new&status=open |
Podporované Jazyky | 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" ] } |