Web3 Wizard Helper

Extension to simplify querying and data hacking on Dune Analytics

什么是Web3 Wizard Helper?

Web3 Wizard Helper是由https://techgeorgii.com开发的Chrome扩展程序,该扩展的主要功能是“Extension to simplify querying and data hacking on Dune Analytics”。

扩展截图

screenshot

下载Web3 Wizard Helper扩展crx文件

下载Web3 Wizard Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
            ]
        }
    ]
}