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