DevAssist ChainGPT

Shows a detailed explanation of each blockchain transaction contract

什麼是DevAssist ChainGPT?

DevAssist ChainGPT是由https://chaingpt.org開發的Chrome擴展程式,該擴展的主要功能是“Shows a detailed explanation of each blockchain transaction contract”。

擴展截圖

screenshot

下載DevAssist ChainGPT擴展crx文件

下載DevAssist ChainGPT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 DevAssist ChainGPT DevAssist ChainGPT
ID hdegcnnmimpfkeeodhihkiiocojgnpgg
官方網址 https://chromewebstore.google.com/detail/devassist-chaingpt/hdegcnnmimpfkeeodhihkiiocojgnpgg
簡介 Shows a detailed explanation of each blockchain transaction contract
檔案大小 1.27 MB
安裝次數 96
目前版本 1.0.0
更新時間 2023-02-19
上架時間 2023-02-18
評分 5.00/5 共 3 次評分
開發者 https://chaingpt.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.ChainGPT.org
說明頁面URL https://docs.chaingpt.org/chaingpt-ai-and-utilities/ii.-ai-tools-and-platforms-powered-by-chaingpt/devassist-browser-extension
隱私政策頁面URL https://www.chaingpt.org/privacy-policy
支援的語言 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": [
                ""
            ]
        }
    ]
}