Hexadecimal Address Calculator

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

What is Hexadecimal Address Calculator?

Hexadecimal Address Calculator is a Chrome extension developed by hexdecadder, and its main feature is "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.".

Extension Screenshots

screenshot

Download Hexadecimal Address Calculator Extension CRX File

Download Hexadecimal Address Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
Official URL https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Description Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
File Size 6.71 KB
Installation Count 140
Current Version 0.0.0.3
Last Updated 2018-05-03
Publish Date 2018-05-03
Developer hexdecadder
Email [email protected]
Payment Type free
Extension Website https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Help Page URL https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Supported Languages 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"
            ]
        }
    ]
}