Web3 Wizard Helper

Extension to simplify querying and data hacking on Dune Analytics

Web3 Wizard Helper là gì?

Web3 Wizard Helper là một tiện ích mở rộng Chrome được phát triển bởi https://techgeorgii.com, và tính năng chính của nó là "Extension to simplify querying and data hacking on Dune Analytics".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web3 Wizard Helper

Tải xuống các tệp mở rộng Web3 Wizard Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web3 Wizard Helper Web3 Wizard Helper
ID aefehogbbakpjjegponcmdnkfjipdcfl
URL Chính Thức https://chromewebstore.google.com/detail/web3-wizard-helper/aefehogbbakpjjegponcmdnkfjipdcfl
Mô tả Extension to simplify querying and data hacking on Dune Analytics
Kích Thước Tệp 244 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2023-03-18
Ngày Phát Hành 2023-03-08
Đánh Giá 4.91/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://techgeorgii.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TechGeorgii/web3-wizard-helper-extension
URL Trang Trợ Giúp https://docs.google.com/forms/d/e/1FAIpQLSduytYvhNdmMhJxFmBiCdb9NgRHzm8GMwdPzAReYstowdVdIA/viewform
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}