Hexadecimal Address Calculator

Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.

Hexadecimal Address Calculatorคืออะไร?

Hexadecimal Address Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hexdecadder และคุณลักษณะหลักของมันคือ "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hexadecimal Address Calculator

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

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

                        Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal. Useful for embedded program debugging such as the Altera Nios II. 

Now you don't have to convert your offset from decimal to hex to plug into a calculator. Additionally you can have negative offsets simply by your offset value. 

Raise issues or PRs on github:

https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension                    

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

ชื่อ Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
คำอธิบาย Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
ขนาดไฟล์ 6.71 KB
จำนวนการติดตั้ง 140
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2018-05-03
วันที่เผยแพร่ 2018-05-03
ผู้พัฒนา hexdecadder
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
URL หน้าช่วยเหลือ https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hexadecimal Address Calculator",
    "description": "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.",
    "version": "0.0.0.3",
    "manifest_version": 2,
    "short_name": "Hex Address Calculator",
    "browser_action": {
        "default_title": "Return 8 digit hex sum given base hexadecimal address and an offset",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "calculator.js"
            ]
        }
    ]
}