Hexadecimal Address Calculator

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

Apa itu Hexadecimal Address Calculator?

Hexadecimal Address Calculator adalah ekstensi Chrome yang dikembangkan oleh hexdecadder, dan fitur utamanya adalah "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Hexadecimal Address Calculator

Unduh file ekstensi Hexadecimal Address Calculator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
URL Resmi https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Deskripsi Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
Ukuran File 6.71 KB
Jumlah Instalasi 140
Versi Saat Ini 0.0.0.3
Terakhir Diperbarui 2018-05-03
Tanggal Publikasi 2018-05-03
Pengembang hexdecadder
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
URL Halaman Bantuan https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Bahasa yang Didukung 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"
            ]
        }
    ]
}