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
Eメール [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\/*"
            ]
        }
    ]
}