This project provides a custom Arc browser Boost script that allows users to easily clip web content directly into their Obsidian vault. It is inspired by and adapted from the original Obsidian Web Clipper created by Steph Ango.
The Arc Obsidian Clipper is based on the bookmarklet version of the Obsidian Web Clipper. You can find the original bookmarklet and more information here. This project adapts the core functionality of the original clipper to work as an Arc browser Boost, providing a seamless experience for Arc users.
- Adds a "Clip" button to web pages
- Converts web content to Markdown format
- Includes YAML front matter with metadata
- Supports keyboard shortcut (Control + Shift + M) for quick clipping
- Integrates with Obsidian for seamless note creation
- Clone this repository or download the
arc-obsidian-clipper.jsfile. - In Arc browser, navigate to the page where you want to use the clipper.
- Click on the "+" button in the address bar to create a new Boost.
- Name your Boost (e.g., "Obsidian Clipper") and click "Create Boost".
- In the Boost editor, paste the contents of
arc-obsidian-clipper.js. - Click "Save" to apply the Boost.
- Navigate to a web page you want to clip.
- Click the "Clip" button that appears in the bottom-right corner of the page, or use the keyboard shortcut Control + Shift + M.
- The selected content (or entire page if no selection) will be converted to Markdown and opened in Obsidian.
You can customize the Obsidian vault and folder by modifying the following lines in the script:
const vault = ''; // Specify your vault name here const folder = 'Clippings/'; // Specify your desired folder path hereThis script uses the following libraries (loaded dynamically):
- Turndown for HTML to Markdown conversion
- Readability for extracting main content from web pages
Contributions are welcome! Please feel free to submit a Pull Request.
This project is open source and available under the MIT License.
Special thanks to Steph Ango for creating the original Obsidian Web Clipper, which served as the inspiration and foundation for this Arc browser adaptation.