Glasp

by Glasp
5
4
3
2
1
Score: 50/100

Description

Category: 3rd Party Integrations

The Glasp plugin allows users to sync their highlights and notes from Glasp directly into Obsidian. It automates the process of importing saved content into a specified folder within the vault, making it easy to organize and reference web highlights. By integrating with the Glasp API, the plugin ensures that all annotations and notes remain updated within Obsidian, streamlining research workflows.

Reviews

No reviews yet.

Stats

14
stars
1,791
downloads
0
forks
520
days
2
days
2
days
22
total PRs
0
open PRs
0
closed PRs
22
merged PRs
3
total issues
1
open issues
2
closed issues
0
commits

Latest Version

2 days ago

Changelog

Adds Summaries and Bookmarks import, plus per-source Obsidian Bases database views (Table/Cards with thumbnails). Also fixes a Kindle duplicate-on-resync bug. Requires Obsidian 1.9+.

README file from

Github

Glasp for Obsidian

CI

Import your Glasp highlights, notes, summaries, and bookmarks — from the web and from Kindle — directly into your Obsidian vault, and keep them in sync automatically.

Glasp is a social web highlighter that lets you highlight and take notes on the web, PDFs, YouTube, and Kindle, then own and export everything you collect. This plugin brings that knowledge into Obsidian as Markdown notes you fully control.


✨ Features

  • 📥 Import web highlights & notes from Glasp into a folder of your choice.
  • 📚 Import Kindle highlights & notes into a separate folder, so book highlights stay out of your web notes.
  • 📝 Import summaries — your Glasp AI page/video summaries as notes, optionally embedding the full article/PDF text.
  • 🔖 Import bookmarks — every page you've saved, as lightweight, metadata-rich notes.
  • 🗂️ Database views (Obsidian Bases) — each source gets an auto-generated .base view collected in a dedicated Glasp Bases folder, so you can browse everything as a sortable Table or a Cards gallery with thumbnails. (Requires Obsidian 1.9+.)
  • 🔁 Automatic background sync — every hour, every day, or once a week.
  • Incremental & non-destructive — only new/updated items are fetched, and existing notes are matched by source URL and updated in place (no duplicates).
  • 🎨 Customizable templates — define your own Markdown layout and frontmatter for every source, or use the sensible defaults.
  • 📱 Desktop & mobile — works anywhere Obsidian runs.

✅ Requirements

  • Obsidian 1.9.0 or later (the auto-generated database views use the built-in Bases core plugin). On older versions, use plugin v0.2.x.

📦 Installation

  1. Open Settings → Community plugins in Obsidian.
  2. Search for “Glasp”, click Install, then Enable.

Manual

  1. Download main.js and manifest.json from the latest release.
  2. Copy them into [YourVault]/.obsidian/plugins/glasp/.
  3. Reload Obsidian and enable Glasp under Community plugins.

🚀 Getting started

📺 Prefer a walkthrough? Follow the full step-by-step tutorial on exporting Glasp highlights into Obsidian.

  1. Get your access token from your Glasp account: https://glasp.co/settings/access_token
    • 💡 If the link opens inside Obsidian and you can’t sign in, use the copy button next to the token field and paste the URL into your default browser (Chrome, Safari, etc.).
  2. In Settings → Glasp, paste the Access token.
  3. Choose an output folder for each source you want — web highlights, Kindle highlights, summaries, and/or bookmarks.
    • Leaving a folder unset simply skips that source, so you can enable any combination.
    • Tip: give each source its own folder to keep them tidy.
  4. Pick an update frequency. Your data is imported on startup and then on that schedule. You can also trigger an import any time via the ribbon icon or the command palette (“Glasp: Import highlights”).

Once a source has imported, a matching database view appears in the Glasp Bases folder — open it and switch between Table and Cards at the top.

⚙️ Settings

Setting Description
Access token Your Glasp API token. Stored locally in your vault and sent only to api.glasp.co.
Web highlights output folder Where web highlight notes are saved. Unset = skip web import.
Kindle highlights output folder Where Kindle highlight notes are saved. Unset = skip Kindle import.
Summaries output folder Where summary notes are saved. Unset = skip summary import.
Include full page content in summaries Also embed the full article/PDF text in each summary note. Slower (one extra request per summary) and makes notes larger.
Bookmarks output folder Where bookmark notes are saved. Unset = skip bookmark import.
Update frequency How often your data is synced automatically (hourly / daily / weekly).
Templates (Advanced) Custom note layout for each source (see below). Empty = default template.

🗂️ Database views (Bases)

For every enabled source, the plugin creates a Bases view in a top-level Glasp Bases folder — for example Glasp Bookmarks.base and Glasp Summaries.base. Each view is a live database over that source's notes, so your imports read like a table instead of a long file list:

  • Table view for sorting and scanning by domain, date, tags, etc.
  • Cards view with thumbnail covers for a visual gallery.

The views are created once and are not re-created if you delete them, so you're free to customize or remove them. A view's folder filter is updated automatically if you later change that source's output folder.

Bases is a core plugin included with Obsidian 1.9+. Enable it under Settings → Core plugins → Bases if it isn't already.

🎨 Customizing the template

You can fully control how each note looks using Handlebars placeholders. Leave a template empty to use the default.

Web highlights — available variables: {{url}} · {{glasp_url}} · {{thumbnail_url}} · {{tags}} · {{updated_at}} · {{content}}

Kindle highlights — available variables: {{url}} · {{glasp_url}} · {{author}} · {{thumbnail_url}} · {{tags}} · {{updated_at}} · {{content}}

Summaries — available variables: {{url}} · {{title}} · {{domain}} · {{thumbnail_url}} · {{created_at}} · {{updated_at}} · {{summary}} · {{content}}

Bookmarks — available variables: {{url}} · {{title}} · {{domain}} · {{category}} · {{description}} · {{thumbnail_url}} · {{created_at}} · {{updated_at}} · {{title_text}} · {{url_text}}

ℹ️ Frontmatter values (e.g. {{title}}, {{domain}}) are emitted already quoted so they can't break the note's Properties — keep them on their own line. The _text variants are unquoted, for use in the note body (e.g. a Markdown link). Keeping the URL property in your template is what lets the plugin match and update existing notes instead of duplicating them.

---
URL: {{url}}
Glasp URL: {{glasp_url}}
Thumbnail: {{thumbnail_url}}
Tags: [{{tags}}]
Last updated: {{updated_at}}
---
{{content}}
---
URL: {{url}}
Glasp URL: {{glasp_url}}
Author: {{author}}
Thumbnail: {{thumbnail_url}}
Tags: [{{tags}}]
Last updated: {{updated_at}}
---
{{content}}
---
Glasp: summary
URL: {{url}}
Title: {{title}}
Domain: {{domain}}
Thumbnail: {{thumbnail_url}}
Created: {{created_at}}
Updated: {{updated_at}}
---

## Summary

{{summary}}
{{content}}
---
Glasp: bookmark
URL: {{url}}
Title: {{title}}
Domain: {{domain}}
Category: {{category}}
Description: {{description}}
Thumbnail: {{thumbnail_url}}
Created: {{created_at}}
Updated: {{updated_at}}
---

[{{title_text}}](<{{url_text}}>)

🔒 Privacy & security

  • Your access token is stored locally in your vault (.obsidian/plugins/glasp/data.json) and is used only to call the official Glasp API at https://api.glasp.co.
  • The plugin has read-only access to your own content. It never sends your notes anywhere.
  • ⚠️ If you sync or share your vault, be aware that data.json contains your token — treat it like a password.

🛠️ Development

git clone https://github.com/glasp-co/obsidian-glasp-plugin
cd obsidian-glasp-plugin
npm install
npm run dev      # watch & rebuild
npm test         # run unit tests
npm run build    # production build

To develop against a live vault, clone into [YourVault]/.obsidian/plugins/ and run npm run dev.

🐞 Bugs & feedback

Found a bug or have a feature request? Please open an issue.

License

MIT © Glasp

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Anki Integration
a year ago by Noah Boos AKA Rift
Create flashcards from your notes with a seamless interface, structuring them with metadata and syncing effortlessly via AnkiConnect.
AnySocket Sync
2 years ago by Andrei Vaduva
Securely Synchronize your Vault on a self-hosted server
Askify Sync
3 years ago by Kishlay Raj
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
Awesome Reader
3 years ago by AwesomeDog
Make Obsidian a proper Reader.
BetaX NAS Sync
2 years ago by Skye
Obsidian NAS Sync
BookFusion
2 years ago by BookFusion
BookFusion Obsidian Plugin
BookXNote Sync
2 years ago by CodeListening
将bookxnote中的笔记同步到obsidian指定的文件夹中
Browser History
a year ago by noy4
Sync your browser history to notes.
Checkbox Sync
a year ago by Grol
Keep parent/child checkboxes in sync automatically within your Obsidian task lists.
Cicada Synchronizer
2 years ago by Adapole, Adapole, Mahyar Mirrashed
Cloud Storage
2 years ago by Jiajun Ma
Obsidian Cloud Storage is a powerful and user-friendly plugin designed to seamlessly integrate cloud storage capabilities into your Obsidian workflow. This plugin allows you to effortlessly upload your attachments to the cloud, freeing up local storage space and enabling easy sharing and access across all your devices.
Confluence Sync
2 years ago by Prateek Grover
Obsidian plugin for obsidian confluence sync
Cubox
a year ago by delphi-2015
Cubox Official Obsidian Plugin
Douban
4 years ago by Wanxp
an obsidian plugin that can pull data from douban to your markdown file
Entity Linker
2 years ago by Ankush-Chander
Automatically link text to corresponding entities
ExMemo Client
2 years ago by Yan.Xie
exmemo obsidian plugin
Feedly Annotations Sync
a year ago by Nick Felker
Download my Feedly annotations
Filename Heading Sync
5 years ago by dvcrn
Obisdian.md plugin to keep the filename and the first header of the file in sync
GitHub Gitless Sync
a year ago by Silvano Cerza
Sync a GitHub repository with vaults on different platforms without requiring git installation
Github Issues
a year ago by LonoxX
An Obsidian plugin that integrates with GitHub to track issues and pull requests directly in your vault.
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Google Contacts
a year ago by aleksejs1
Obsidian plugin for sync Google Contacts with obsidian notes
Google Drive Sync
2 years ago by Richard Xiong
A plugin to make Obsidian work in Google Drive to enable access to iOS.
HackMD Sync
2 years ago by thor kampefner
obsidian extension to push and pull notes from hackmd conveniently
Hardcover
5 months ago by aliceinwaterdeep
Sync your Hardcover.app library to your Obsidian notes.
InfoFlow
a year ago by RockieStar Inc.
Obsidian plugin for InfoFlow.app - This plugin integrates InfoFlow with Obsidian, allowing you to sync your saved articles, web pages, notes, and highlights directly into your Obsidian vault.
Instapaper
2 years ago by Instapaper
Official Instapaper plugin for Obsidian
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
KOI Sync
a year ago by Luke Miller
KOReader Sync
5 years ago by Federico "Edo" Granata
Obsidian.md plugin to sync highlights/notes from koreader
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
LINE Notes Sync
a year ago by onikun94
Markdown Hijacker
a year ago by Yongmini
Beyond the Vault. One hub for every Markdown, everywhere
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Memos Sync
2 years ago by RyoJerryYu
Syncing Memos to Obsidian daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.
Minote Sync
a year ago by Emac Shen
Minote Sync is a Obsidian plugin to sync Minote(小米笔记) into your Vault.
MrDoc
9 months ago by zmister
An Obsidian plugin for MrDoc that enables two-way synchronization between local Obsidian documents and MrDoc.一个 Obsidian 的 MrDoc 插件,用于 Obsidian 本地文档与 MrDoc 的双向同步
Notes Sync Share
3 years ago by Alt-er
Sync and share (publish) your notes in your own private service.
Nutstore Sync
8 months ago by nutstore-dev
Papers
a year ago by William Liang
An obsidian plugin to retrieve and import research papers.
Peerdraft
3 years ago by Peerdraft
Collaboration for Obsidian – Sync, Share, and Edit anywhere
Pinboard Sync
5 years ago by Mathew Spolin
Obsidian plugin to sync Pinboard.in links to Daily Notes
Quadro
2 years ago by Chris Grieser (aka pseudometa)
Obsidian Plugin for social-scientific Qualitative Data Analysis (QDA). An open alternative to MAXQDA and atlas.ti, using Markdown to store data and research codes.
Readavocado Sync
4 years ago by Cyrus Zhang
Readavocado obsidian plugin to sync your favorite highlights.
Readwise Mirror
5 years ago by jsonmartin
Reference Map
3 years ago by Anoop K. Chandran
Reference and citation map for literature review and discovery
Remotely Save
5 years ago by fyears
Sync notes between local and cloud with smart conflict: S3 (Amazon S3/Cloudflare R2/Backblaze B2/...), Dropbox, webdav (NextCloud/InfiniCLOUD/Synology/...), OneDrive, Google Drive (GDrive), Box, pCloud, Yandex Disk, Koofr, Azure Blob Storage.
Research Quest
a year ago by Nathan Arthur
SamePage
4 years ago by SamePage
Scholar
3 years ago by Shannon Shen
Streamline Research Workflow in Obsidian
Settings profiles
2 years ago by 4Source
This is a plugin for Obsidian (https://obsidian.md). Allows you to create various global settings profiles. You can sync them between different vaults. To keep all your settings in sync, you'll never have to manually adjust them again for every vault you have or create in the future.
Share to NotionNext
3 years ago by EasyChris, jxpeng98
Share obsidian markdown file to any Notion database and generate notion share link 同步obsdian文件到任意Notion数据库。
Strava Sync
2 years ago by Howard Wilson
Sync Strava activities to your Obsidian vault
Sync Cnblog
2 years ago by zhanglei
同步文章到博客园
Sync config folder to common folder
2 years ago by codeonquer
Sync Graph Settings
4 years ago by Xallt
This is a plugin for syncing graph settings (Color Groups and Search Filters) to Local Graphs
Sync to Hugo
2 years ago by Cray Huang
Sync the selected notes from Obsidian to Hugo
Sync Vault CE
a year ago by Camus Qiu
Professional cloud sync & VFS for Obsidian. Features zero-space VFS, 4K streaming, MCP AI engine, and P2P collaboration. Supports Baidu/Aliyun/Quark/WebDAV/S3.
Sync-safe file names
9 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
Taskbone
5 years ago by Dominik Schlund
Obsidian OCR plugin - extract text from images
TickTick
3 years ago by Viduy Cheung
TickTickSync
3 years ago by thesamim
Bidirectional synchronization between Obsidian and TickTick. Mobile compatible.
Todoist Sync
6 years ago by jamiebrynes7
Materialize Todoist tasks in Obsidian notes
Topic Linking
4 years ago by Liam Magee
An Obsidian plugin for finding and linking topics in a vault.
VaultSync
a year ago by Justin Bird
Obsidian plugin to link your vault to a cloud storage provider.
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
Vim Multibyte Char Search
4 years ago by anselmwang
Search multibyte characters by the corresponding input method encoding. For example, for Chinese, search "用来" by "yl"
Voicenotes Sync
2 years ago by Andrew Lombardi
Official Obsidian plugin that syncs your notes from VoiceNotes.com into your vault
Weread Plugin
4 years ago by hank zhao
Obsidian Weread Plugin is a plugin to sync Weread(微信读书) hightlights and annotations into your Obsidian Vault.
WikiDocs
2 years ago by pahkey
WuCai highlights Official
3 years ago by 希果壳五彩
WuCai highlights Official, for Sync highlights into your obsidian notes
Yandex Wiki Integration
a year ago by Pavel Sokolov
You and Your Research
2 years ago by Neo Zhang