Who is this workflow for? Streamline your research process by automatically saving your browser bookmarks to Notion. This workflow leverages n8n to create a simple bookmarklet that captures URLs and stores them in your Notion database, eliminating the need for premium bookmarking services..

What does this workflow do?

Step 1: Create a Bookmarklet in Your Browser

  • Add a New Bookmark:
  • Open your browser and create a new bookmark by clicking the star icon or using the browser’s bookmark manager.
  • Set the bookmark’s name to something identifiable, such as “Save to Notion.”
  • Insert JavaScript Code:
  • Edit the newly created bookmark.
  • Replace the URL with the following JavaScript code, ensuring you update the webhookUrl with your actual n8n webhook URL:
   javascript:(() => {     const currentUrl = window.location.href;     const webhookUrl = 'https://yourN8nInstanceUrl/webhook/your-webhook-id';     fetch(webhookUrl, {       method: 'POST',       headers: {         'Content-Type': 'application/json'       },       body: JSON.stringify({ url: currentUrl })     });   })();

Step 2: Set Up n8n Workflow

  • Create a Webhook Node:
  • In your n8n instance, add a new Webhook node.
  • Configure it to receive POST requests and note the webhook URL generated.
  • Add a Notion Node:
  • Connect the Webhook node to a Notion node.
  • Configure the Notion node to insert a new entry into your desired Notion database, mapping the received URL to the appropriate field.
  • Configure Workflow Permissions:
  • Ensure your Notion integration has the necessary permissions to add entries to the selected database.
  • Test the workflow by activating it in n8n.

Step 3: Use the Bookmarklet

  • Bookmark a Page:
  • When you encounter a page you want to save, click the “Save to Notion” bookmarklet.
  • The current page URL will be sent to n8n and subsequently added to your Notion database.
  • Verify in Notion:
  • Open your Notion database to confirm that the URL has been successfully added.

🤖 Why Use This Automation Workflow?

  • Cost-Effective: Avoid subscription fees associated with premium bookmarking tools.
  • Seamless Integration: Directly connect your browser bookmarks to Notion without manual intervention.
  • Customization: Tailor the workflow to fit your specific organizational needs within Notion.

👨‍💻 Who is This Workflow For?

This workflow is ideal for researchers, students, professionals, and anyone who frequently bookmarks web pages and wishes to maintain an organized, centralized repository in Notion without additional costs or complexities.

🎯 Use Cases

  1. Academic Research: Automatically save and categorize scholarly articles and resources directly into your Notion research database.
  2. Content Curation: Bloggers and content creators can effortlessly collect and organize reference links for future content development.
  3. Project Management: Teams can bookmark relevant web resources and have them automatically stored in a shared Notion workspace for easy access and collaboration.

TL;DR

This workflow provides a straightforward method to capture and organize your browser bookmarks directly into Notion using n8n. By setting up a simple bookmarklet and configuring an n8n workflow, you can enhance your productivity and maintain an organized repository of important URLs without relying on premium services.

Help us find the best n8n templates

About

A curated directory of the best n8n templates for workflow automations.