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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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": [
                ""
            ]
        }
    ]
}