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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
            ]
        }
    ]
}