A Chrome extension that saves web page content directly to your Tana workspace with just one click. Extract structured information from articles, blog posts, and documentation automatically.
Save any web page to your Tana workspace with structured fields
⚠️ Important: You must create a specific supertag structure in Tana before installing the extension.
Before installing the extension, you need to set up a supertag in your Tana workspace:
- In your Tana workspace, create a new supertag called
#save-to-tana
- Add these 4 required fields to your supertag (exact names required):
Required fields for the #save-to-tana supertag
Required Fields:
- URL (field type: URL)
- Author (field type: Text)
- Description (field type: Text)
- Content (field type: Text)
⚠️ Critical: The field names must match exactly:URL
,Author
,Description
,Content
- Navigate to your
#save-to-tana
supertag in Tana - Press Cmd+K (or Ctrl+K on Windows/Linux)
- Search for and select "Show API Schema"
- Click the "Copy payload" button
Tana's Show API Schema feature with Copy payload button
Keep this copied - you'll need it in Step 3!
- Go to the Releases page
- Download the latest ZIP file (e.g.,
save-to-tana-v1.1.0.zip
) - Unzip the file to a folder on your computer
- Open Chrome and go to
chrome://extensions/
Chrome extensions page with Developer mode toggle
- Enable "Developer mode" using the toggle in the top right
- Click "Load unpacked" and select the unzipped
dist
folder - The extension icon should appear in your Chrome toolbar
Save to Tana extension icon in Chrome toolbar
✅ Success: You should see the Save to Tana icon in your browser toolbar.
Setup time: ~5 minutes
- In Tana, go to Settings > API Tokens
- Create a new token for the extension
- Copy the token (keep it safe!)
- Right-click the extension icon and select "Options"
Save to Tana extension options page
- Paste the JSON schema from Step 1 in the "Paste Schema & Extract" section
- Click "Extract Schema" - this will automatically fill in the field IDs
- Enter your Tana API Token from above
- Enter your Target Node ID (where you want saved content to go):
- Right-click any node in Tana
- Select "Copy link"
- The ID is the part after
nodeid=
in the URL
- Click "Save Options"
Successfully configured extension showing all required fields
🎉 Setup Complete! You're now ready to save web pages to Tana.
- Navigate to any web page you want to save
- Click the Save to Tana extension icon in your toolbar
Save to Tana popup with content options
- Choose what to include:
- ✅ Include page content - Main article/page text
- ✅ Include page title - Use page title (unchecked = uses URL as title)
- Click "Save to Tana"
Success message after saving content
Available keyboard shortcuts for quick saving
- Quick Save:
Alt+Shift+T
(Windows/Linux) orCmd+Shift+S
(Mac) - Save with Notes:
Alt+Shift+N
(Windows/Linux) orCmd+Shift+N
(Mac)
Type 'tana' in the address bar to quickly save pages
- Click in the browser address bar
- Type
tana
followed by a space - Enter optional notes or custom title
- Press Enter to save
Right-click context menu options for saving content
- Right-click on any webpage: Choose "Save page to Tana"
- Right-click on selected text: Choose "Save selection to Tana"
- Add notes: Choose "Save with notes" options for custom annotations
Quick capture overlay for adding notes before saving
When using "save with notes" options, an overlay appears where you can:
- Preview what's being saved (title and URL)
- Add personal notes before saving
- Use keyboard shortcuts (
Ctrl/Cmd+Enter
to save,Escape
to cancel)
The extension creates a new node in your target location with:
Example of saved content in Tana with all fields populated
- Node title - Page title (or URL if title unchecked)
- #save-to-tana supertag applied
- URL field - Link to the original page
- Author field - Extracted from meta tags (when available)
- Description field - Page meta description (when available)
- Content field - Main page content (when "Include page content" is checked)
- Check: Have you completed all setup steps?
- Solution: Go to Options and verify all fields are filled in
- Verify: API token is valid and not expired
- Check: Is your Target Node ID correct?
- Solution: Copy a fresh node link from Tana and extract the ID
- Verify: Your API token has the necessary permissions
- Try: Refreshing the page before clicking the extension
- Check: Some sites block content extraction for security
- Alternative: Use "Save selection" to manually select content
- Solution: Reload the extension in
chrome://extensions/
- Check: Make sure the extension is enabled
- Try: Restarting Chrome if issues persist
If you need assistance:
- Verify your Tana supertag has all 4 required fields with exact names
- Test with a simple website (like a news article)
- Check the browser console for error messages
- Create an issue with:
- Description of the problem
- Steps you've tried
- Example website where the issue occurs
This extension works well with most websites! While we're continuously improving compatibility and adding features, here's what you can expect:
What works great:
- ✅ News sites, blogs, and documentation
- ✅ Standard article and content pages
- ✅ Metadata extraction from most sites
- ✅ Large content handling (auto-truncated at 100,000 characters)
- ✅ Multiple save methods and user-friendly interface
Known limitations:
⚠️ Some sites may block content extraction for security reasons⚠️ Dynamic content loaded by JavaScript may not be captured⚠️ Complex layouts may not extract content cleanly
Your feedback helps us improve! Please share your experience.
Your data security is important:
- Local processing - All content extraction happens in your browser
- Direct to Tana - Data goes directly to your Tana workspace only
- No third parties - No data is sent to any other servers
- API token storage - Stored securely in Chrome's local storage
- Minimal permissions - Extension only accesses the current tab
🔐 Security tip: Only install extensions from trusted sources. Your API token is sensitive - regenerate it if you suspect it may be compromised.
- TypeScript 5.4+ for type safety and modern development
- Vite for fast, modern bundling and development
- Chrome Extension Manifest V3 for security and performance
- No external dependencies - uses only browser and Chrome APIs
save-to-tana/
├── dist/ # Built extension files
├── src/ # TypeScript source
│ ├── background.ts # Service worker for API calls
│ ├── content.ts # Content extraction script
│ ├── options.ts # Options page functionality
│ ├── popup.ts # Popup interface
│ ├── tanaPayloadBuilder.ts # Tana API payload construction
│ ├── types/index.ts # TypeScript type definitions
│ └── utils/textUtils.ts # Text processing utilities
└── static/ # Static assets
├── images/ # Extension icons
├── manifest.json # Extension manifest
├── options.html # Options page
├── popup.html # Popup interface
└── style.css # Shared styles
npm run build
- Build for productionnpm run dev
- Build with watch modenpm run package
- Build and copy static assets
The extension uses a priority-based approach to extract main content:
<article>
elements (highest priority)<main>
elements.main-content
class elements<body>
element (fallback)
Author extraction attempts multiple meta tag formats and Schema.org structured data.
The extension constructs payloads for the Tana Input API using target node IDs, supertag IDs, and field attribute IDs. Content is automatically sanitized and truncated at 100,000 characters to prevent API errors.
Built by Lisa Ross for the Tana community • Not an official Tana product