DevAssist ChainGPT

Shows a detailed explanation of each blockchain transaction contract

DevAssist ChainGPT là gì?

DevAssist ChainGPT là một tiện ích mở rộng Chrome được phát triển bởi https://chaingpt.org, và tính năng chính của nó là "Shows a detailed explanation of each blockchain transaction contract".

Ả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 DevAssist ChainGPT

Tải xuống các tệp mở rộng DevAssist ChainGPT 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

                        DevAssist is a unique browser extension powered by ChainGPT advanced AI technology, created to provide users with additional information in regards to any smart contract they are interacting with. For example, if a user is using metamask to interact with a smart-contract through a DApp or a web application, DevAssist extension will pop-up with easy to understand explanation of what the smart-contract that the user is about to interact with is actually doing. 


The Power of ChainGPT.org
By utilizing the advanced AI model ChainGPT has to offer. Each and every smart contract is being scanned live by ChainGPT's AI, analyzed, and then explained in a simple way that's easy to understand by all users. This is the first time non developers with no-code knowledge can know for a fact what the smart contract that they're about to interact with is actually doing.                    

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

Tên DevAssist ChainGPT DevAssist ChainGPT
ID hdegcnnmimpfkeeodhihkiiocojgnpgg
URL Chính Thức https://chromewebstore.google.com/detail/devassist-chaingpt/hdegcnnmimpfkeeodhihkiiocojgnpgg
Mô tả Shows a detailed explanation of each blockchain transaction contract
Kích Thước Tệp 1.27 MB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-02-19
Ngày Phát Hành 2023-02-18
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://chaingpt.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ChainGPT.org
URL Trang Trợ Giúp https://docs.chaingpt.org/chaingpt-ai-and-utilities/ii.-ai-tools-and-platforms-powered-by-chaingpt/devassist-browser-extension
URL Trang Chính Sách Bảo Mật https://www.chaingpt.org/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Shows a detailed explanation of each blockchain transaction contract",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "DevAssist ChainGPT",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "content.bundle.js"
            ],
            "css": [],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "attach.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}