Hexadecimal Address Calculator

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

Hexadecimal Address Calculator là gì?

Hexadecimal Address Calculator là một tiện ích mở rộng Chrome được phát triển bởi hexdecadder, và tính năng chính của nó là "Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hexadecimal Address Calculator

Tải xuống các tệp mở rộng Hexadecimal Address Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hexadecimal Address Calculator Hexadecimal Address Calculator
ID ddgfmjlfgfnpifbkidknbbilaennbbpo
URL Chính Thức https://chromewebstore.google.com/detail/hexadecimal-address-calcu/ddgfmjlfgfnpifbkidknbbilaennbbpo
Mô tả Return 8 digit hex sum given base hexadecimal address and an off in hexadecimal or decimal.
Kích Thước Tệp 6.71 KB
Số Lần Cài Đặt 140
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2018-05-03
Ngày Phát Hành 2018-05-03
Nhà Phát Triển hexdecadder
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
URL Trang Trợ Giúp https://github.com/usernameisntallowed/HexadecimalDecimalAddressChromeExtension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}