Interact Scratchpad
Interact Scratchpad is a free Mac menu bar utility to ease the creation of contacts from snippets of text, like email signatures and more. Protocol Launcher allows you to generate deep links to open the Interact Scratchpad with pre-filled text for contact parsing.
Usage
There are two ways to use this library:
- On-Demand import from subpaths enables tree-shaking and keeps bundles small.
- Full Import from the root package is convenient but includes all app modules.
Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.
Select Installation Method
On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.
Open Interact Scratchpad
ts
import { open } from 'protocol-launcher/interact'
const url = open()Open Scratchpad with Text
ts
import { scratchpad } from 'protocol-launcher/interact'
const url = scratchpad({
text: 'John Doe\njohn@example.com\n888-555-1234',
})