Programmer's Calculator

Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more.

Programmer's Calculatorคืออะไร?

Programmer's Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrey Shemetov และคุณลักษณะหลักของมันคือ "Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Programmer's Calculator

ดาวน์โหลดไฟล์ส่วนขยาย Programmer's Calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Programmer's Calculator Programmer's Calculator
ID pcddapobilfljlfllgjlfihconhklinb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/programmers-calculator/pcddapobilfljlfllgjlfihconhklinb
คำอธิบาย Converts numbers between different number bases (Hex, Dec, Oct, Bin, Exp) and more.
ขนาดไฟล์ 456 KB
จำนวนการติดตั้ง 435
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2023-01-08
วันที่เผยแพร่ 2020-03-25
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Andrey Shemetov
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bitbucket.org/ashemetov/programmerscalculator/wiki/Home
URL หน้าช่วยเหลือ https://bitbucket.org/ashemetov/programmerscalculator/issues?status=new&status=open
ภาษาที่รองรับ 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"
    ]
}