ワンクリックで
browser
Automate web page interactions via PinchTab for claiming airdrops and interacting with dApps
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Automate web page interactions via PinchTab for claiming airdrops and interacting with dApps
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check eligibility for and claim token airdrops
Scan, audit, and revoke ERC-20 token approvals to manage wallet spending permissions
Set up automated server-side trading strategies (limit buys/sells) that execute on Base via Bankr
Deploy tokens on Base (Uniswap V4) or Solana (Raydium) via Bankr gas-sponsored launch API
Open leveraged long/short positions via Avantis on Base with up to 10x leverage
Access Polymarket prediction markets to search, place bets, view positions, and redeem winnings
| name | browser |
| description | Automate web page interactions via PinchTab for claiming airdrops and interacting with dApps |
Use the browser tool for web page interaction via PinchTab.
PinchTab must be installed and running:
# Install (12MB Go binary)
curl -sSL https://pinchtab.com/install.sh | sh
# Start server
pinchtab serve
Default URL: http://localhost:9222. Override with PINCHTAB_URL env var.
| Action | Description | Required Params |
|---|---|---|
| navigate | Go to URL, extract page content | url |
| click | Click element by CSS selector | selector |
| type | Type text into input field | selector, text |
| extract | Extract structured data from page | (selector optional) |
| screenshot | Take page screenshot | (selector optional) |
| status | Check if PinchTab is running | (none) |
browser action=navigate url=https://claim.example.com wait_for=".claim-button"
Then extract the eligibility status:
browser action=extract selector=".eligibility-status"
browser action=navigate url=https://claim.example.com
browser action=click selector="button.connect-wallet"
browser action=click selector="button.claim"
browser action=navigate url=https://app.aave.com
browser action=extract selector=".markets-table" format=table
browser action=navigate url=https://example.com/form
browser action=type selector="#email" text="user@example.com"
browser action=type selector="#amount" text="100"
browser action=click selector="button[type=submit]"
browser action=status
PinchTab extracts structured text content (~800 tokens/page) instead of sending screenshots (~10K+ tokens). This makes it practical for LLM-driven web automation. Use extract for data retrieval and screenshot only when visual inspection is necessary.
"#id", ".class", "button.submit")