Hexadecimal Address Calculator

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

Vad är Hexadecimal Address Calculator?

Hexadecimal Address Calculator är en Chrome-tillägg utvecklad av hexdecadder, och dess huvudfunktion är "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.".

Tilläggsskärmbilder

screenshot

Ladda ner Hexadecimal Address Calculator-förlängningens CRX-fil

Ladda ner Hexadecimal Address Calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
Officiell webbadress https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Beskrivning Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
Filstorlek 6.71 KB
Antal Installationer 140
Aktuell Version 0.0.0.3
Senast Uppdaterad 2018-05-03
Publiceringsdatum 2018-05-03
Utvecklare hexdecadder
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Hjälpsida URL https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Stödda Språk 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"
            ]
        }
    ]
}