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はhexdecadderによって開発されたChromeの拡張機能で、その主な機能は「Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.」です。

拡張機能のスクリーンショット

screenshot

Hexadecimal Address Calculator拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}