DevAssist ChainGPT

Shows a detailed explanation of each blockchain transaction contract

Τι είναι το DevAssist ChainGPT;

Το DevAssist ChainGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://chaingpt.org, και η κύρια λειτουργία του είναι "Shows a detailed explanation of each blockchain transaction contract".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης DevAssist ChainGPT

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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": [
                ""
            ]
        }
    ]
}