Hexadecimal Address Calculator

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

Wat is Hexadecimal Address Calculator?

Hexadecimal Address Calculator is een Chrome-extensie ontwikkeld door hexdecadder, en de belangrijkste functie is "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hexadecimal Address Calculator

Download Hexadecimal Address Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
Officiële URL https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Beschrijving Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
Bestandsgrootte 6.71 KB
Aantal Installaties 140
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2018-05-03
Publicatiedatum 2018-05-03
Ontwikkelaar hexdecadder
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Help Pagina-URL https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Ondersteunde Talen 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"
            ]
        }
    ]
}