A Chrome and Firefox extension that extracts any website's design system into structured YAML that you can feed directly to AI coding assistants like Claude.
You see a website with great design and want your AI coding assistant to build something that matches it. But describing colors, spacing, and component styles in words is tedious and error-prone. Yoink solves this by extracting complete design systems into YAML format that you can paste directly into Claude or your AI assistant.
- Visit any website (Stripe, Linear, GitHub, etc.)
- Click the Yoink extension
- Click "Scan Page" (optionally toggle "Include components" for detailed component detection)
- Copy the YAML output
- Paste into Claude: "Build a dashboard using this design system..."
Yoink extracts colors, typography, spacing, shadows, components, layouts, and animations into clean YAML that AI assistants understand perfectly.
Yoink is 100% private. All processing happens locally in your browser with zero network requests, no data collection, and no analytics. It only requires minimal permissions (activeTab, scripting, clipboardWrite) to function. The code is open source so you can audit it yourself.
Chrome Web Store: Install Yoink
From source:
git clone https://github.com/andersmyrmel/yoink
cd yoink
nvm use
npm run deps:safe-install
npm run buildDependencies are installed with lifecycle scripts disabled, audited against a committed exact-version allowlist, and then only reviewed packages are rebuilt. See dependency installation security.
Then in Chrome:
- Go to
chrome://extensions/ - Enable "Developer mode"
- Click "Load unpacked"
- Select the
dist/folder
From source:
git clone https://github.com/andersmyrmel/yoink
cd yoink
nvm use
npm run deps:safe-install
npm run build:firefoxThen in Firefox:
- Go to
about:debugging#/runtime/this-firefox - Click "Load Temporary Add-on"
- Navigate to the
dist/folder and select themanifest.jsonfile
Note: Firefox requires the build:firefox command (not build) which uses a Firefox-specific manifest. Firefox requires a temporary add-on for development. For a permanent installation, package the extension with npm run package:firefox and install the resulting yoink-firefox.zip file through Firefox Add-ons (requires signing for production use).
MIT - See LICENSE file