Web3 Wizard Helper

Extension to simplify querying and data hacking on Dune Analytics

Web3 Wizard Helper क्या है?

Web3 Wizard Helper https://techgeorgii.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to simplify querying and data hacking on Dune Analytics"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Web3 Wizard Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        gm Web3 Data Wizards 🧙🧙🧙 

This extension is for you to speed up querying on Dune Analytics.

It helps you to get Dune tables preview and structure in a second, WITHOUT:
– Navigating in the data explorer (left panel).
– Making mock selects (SELECT * FROM ... LIMIT 10) to see table structure.

How to use in Dune SQL editor:
– Put cursor on table name and press Ctrl-s to see Dune table's structure (click column name to copy).
– Put cursor on table name and press Ctrl-p to preview Dune table.
🥳🥳🥳

Additional tool:
– Get text Ethereum signatures by 4 byte Keccak256 binary signature.                    

एक्सटेंशन की मूल जानकारी

नाम Web3 Wizard Helper Web3 Wizard Helper
ID aefehogbbakpjjegponcmdnkfjipdcfl
आधिकारिक URL https://chromewebstore.google.com/detail/web3-wizard-helper/aefehogbbakpjjegponcmdnkfjipdcfl
विवरण Extension to simplify querying and data hacking on Dune Analytics
फ़ाइल का आकार 244 KB
स्थापना संख्या 62
वर्तमान संस्करण 0.0.9
अंतिम अपडेट 2023-03-18
प्रकाशन तिथि 2023-03-08
रेटिंग 4.91/5 कुल 11 रेटिंग्स
डेवलपर https://techgeorgii.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/TechGeorgii/web3-wizard-helper-extension
सहायता पृष्ठ URL https://docs.google.com/forms/d/e/1FAIpQLSduytYvhNdmMhJxFmBiCdb9NgRHzm8GMwdPzAReYstowdVdIA/viewform
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web3 Wizard Helper",
    "description": "Extension to simplify querying and data hacking on Dune Analytics",
    "options_page": "options.html",
    "version": "0.0.9",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-32.png"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dune.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "injected.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-32.png",
                "injectedscript.js",
                "icons\/*.svg"
            ],
            "matches": [
                "https:\/\/dune.com\/*"
            ]
        }
    ]
}