This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name React Component Picker+ (Deep Context + Multi-Select) | |
| // @namespace https://example.local/ | |
| // @version 0.3.0 | |
| // @description Pick DOM/React components via Fiber and copy rich context for LLMs. Cmd/Ctrl+C toggles picker; Cmd/Ctrl+Shift+C copies context. | |
| // @match https://app.hyperliquid.xyz/* | |
| // @match https://*.your-domain.com/* | |
| // @match http://localhost:*/* | |
| // @match http://127.0.0.1:*/* | |
| // @grant GM_setClipboard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| Provider, | |
| Signer, | |
| SignatureRequest, | |
| SignatureResponse, | |
| AddressOption | |
| } from 'scrypt-ts' | |
| import { bsv } from 'scryptlib' | |
| import { Transaction } from '@scure/btc-signer' |