Hexadecimal Address Calculator

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

Что такое Hexadecimal Address Calculator?

Hexadecimal Address Calculator - это расширение Chrome, разработанное hexdecadder, и его основная функция - "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Hexadecimal Address Calculator

Скачайте файлы расширений Hexadecimal Address Calculator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
Официальный URL https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Описание Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
Размер файла 6.71 KB
Количество установок 140
Текущая Версия 0.0.0.3
Последнее Обновление 2018-05-03
Дата публикации 2018-05-03
Разработчик hexdecadder
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
URL страницы помощи https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Поддерживаемые языки 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"
            ]
        }
    ]
}