Hexadecimal Address Calculator

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

Co je Hexadecimal Address Calculator?

Hexadecimal Address Calculator je rozšíření Chrome vyvinuté hexdecadder, a jeho hlavní funkcí je „Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Hexadecimal Address Calculator

Stáhněte si soubory rozšíření Hexadecimal Address 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í

                        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                    

Základní Informace o Rozšíření

Název Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
Oficiální URL https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Popis Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
Velikost souboru 6.71 KB
Počet instalací 140
Aktuální Verze 0.0.0.3
Poslední Aktualizace 2018-05-03
Datum Vydání 2018-05-03
Vývojář hexdecadder
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
URL Stránky Nápovědy https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Podporované Jazyky 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"
            ]
        }
    ]
}