Glasp

by Glasp
5
4
3
2
1
Score: 48/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
2,047
downloads
0
forks
566
days
47
days
47
days
22
total PRs
0
open PRs
0
closed PRs
22
merged PRs
4
total issues
2
open issues
2
closed issues
10
commits

Latest Version

2 months 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.
KOReader Sync
5 years ago by Federico "Edo" Granata
Obsidian.md plugin to sync highlights/notes from koreader
Pinboard Sync
5 years ago by Mathew Spolin
Obsidian plugin to sync Pinboard.in links to Daily Notes
Topic Linking
5 years ago by Liam Magee
An Obsidian plugin for finding and linking topics in a vault.
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"
Weread Plugin
4 years ago by hank zhao
Obsidian Weread Plugin is a plugin to sync Weread(微信读书) hightlights and annotations into your Obsidian Vault.
Douban
4 years ago by Wanxp
an obsidian plugin that can pull data from douban to your markdown file
Readavocado Sync
4 years ago by Cyrus Zhang
Readavocado obsidian plugin to sync your favorite highlights.
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
SamePage
4 years ago by SamePage
Sync Graph Settings
4 years ago by Xallt
This is a plugin for syncing graph settings (Color Groups and Search Filters) to Local Graphs
Reference Map
4 years ago by Anoop K. Chandran
Reference and citation map for literature review and discovery
Awesome Reader
4 years ago by AwesomeDog
Make Obsidian a proper Reader.
WuCai highlights Official
3 years ago by 希果壳五彩
WuCai highlights Official, for Sync highlights into your obsidian notes
Askify Sync
3 years ago by Kishlay Raj
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
TickTick
3 years ago by Viduy Cheung
Share to NotionNext
3 years ago by EasyChris, jxpeng98
Share obsidian markdown file to any Notion database and generate notion share link 同步obsdian文件到任意Notion数据库。
Notes Sync Share
3 years ago by Alt-er
Sync and share (publish) your notes in your own private service.
Scholar
3 years ago by Shannon Shen
Streamline Research Workflow in Obsidian
TickTickSync
3 years ago by thesamim
Bidirectional synchronization between Obsidian and TickTick. Mobile compatible.
Peerdraft
3 years ago by Peerdraft
Collaboration for Obsidian – Sync, Share, and Edit anywhere
Instapaper
3 years ago by Instapaper
Official Instapaper plugin for Obsidian
Settings profiles
3 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.
GitHub Sync
3 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Quadro
3 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.
BookFusion
3 years ago by BookFusion
BookFusion Obsidian Plugin
Confluence Sync
3 years ago by Prateek Grover
Obsidian plugin for obsidian confluence sync
Cicada Synchronizer
2 years ago by Adapole, Adapole, Mahyar Mirrashed
Sync config folder to common folder
2 years ago by codeonquer
Voicenotes Sync
2 years ago by Andrew Lombardi
Official Obsidian plugin that syncs your notes from VoiceNotes.com into your vault
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.
You and Your Research
2 years ago by Neo Zhang
Entity Linker
2 years ago by Ankush-Chander
Automatically link text to corresponding entities
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
AnySocket Sync
2 years ago by Andrei Vaduva
Securely Synchronize your Vault on a self-hosted server
Todoist Sync
6 years ago by jamiebrynes7
Materialize Todoist tasks in Obsidian notes
Filename Heading Sync
5 years ago by dvcrn
Obisdian.md plugin to keep the filename and the first header of the file in sync
Readwise Mirror
5 years ago by jsonmartin
Taskbone
5 years ago by Dominik Schlund
Obsidian OCR plugin - extract text from images
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.
BookXNote Sync
2 years ago by CodeListening
将bookxnote中的笔记同步到obsidian指定的文件夹中
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.
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
Strava Sync
2 years ago by Howard Wilson
Sync Strava activities to your Obsidian vault
ExMemo Client
2 years ago by Yan.Xie
exmemo obsidian plugin
HackMD Sync
2 years ago by thor kampefner
obsidian extension to push and pull notes from hackmd conveniently
Google Drive Sync
2 years ago by Richard Xiong
A plugin to make Obsidian work in Google Drive to enable access to iOS.
Sync to Hugo
2 years ago by Cray Huang
Sync the selected notes from Obsidian to Hugo
Sync Cnblog
2 years ago by zhanglei
同步文章到博客园
WikiDocs
2 years ago by pahkey
BetaX NAS Sync
2 years ago by Skye
Obsidian NAS Sync
Feedly Annotations Sync
2 years ago by Nick Felker
Download my Feedly annotations
Minote Sync
2 years ago by Emac Shen
Minote Sync is a Obsidian plugin to sync Minote(小米笔记) into your Vault.
Checkbox Sync
2 years ago by Grol
Keep parent/child checkboxes in sync automatically within your Obsidian task lists.
VaultSync
2 years ago by Justin Bird
Obsidian plugin to link your vault to a cloud storage provider.
KOI Sync
2 years ago by Luke Miller
Memos AI Sync
2 years ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
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.
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.
LINE Notes Sync
a year ago by onikun94
GitHub Gitless Sync
a year ago by Silvano Cerza
Sync a GitHub repository with vaults on different platforms without requiring git installation
Browser History
a year ago by noy4
Sync your browser history to notes.
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.
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
Cubox
a year ago by delphi-2015
Cubox Official Obsidian Plugin
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Markdown Hijacker
a year ago by Yongmini
Beyond the Vault. One hub for every Markdown, everywhere
Google Contacts
a year ago by aleksejs1
Obsidian plugin for sync Google Contacts with obsidian notes
Yandex Wiki Integration
a year ago by Pavel Sokolov
Github Issues
a year ago by LonoxX
An Obsidian plugin that integrates with GitHub to track issues and pull requests directly in your vault.
Papers
a year ago by William Liang
An obsidian plugin to retrieve and import research papers.
Sync-safe file names
10 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
MrDoc
10 months ago by zmister
An Obsidian plugin for MrDoc that enables two-way synchronization between local Obsidian documents and MrDoc.一个 Obsidian 的 MrDoc 插件,用于 Obsidian 本地文档与 MrDoc 的双向同步
Nutstore Sync
9 months ago by nutstore-dev
Hardcover
7 months ago by aliceinwaterdeep
Sync your Hardcover.app library to your Obsidian notes.
YAOS
4 months ago by kavinsood
A zero-terminal, real-time sync engine powered by your own Cloudflare Worker.
Snipd Official
4 months ago by snipd-app
Full Calendar Remastered
3 months ago by obsidian-full-calendar-remastered
Keep events and manage your calendar alongside all your other notes in your Obsidian Vault.
Social Archiver
2 months ago by Jun Lim
Release repository for Social Archiver - Archive social media posts from 8 platforms into Obsidian
Fast Note Sync
2 months ago by HaierKeys
Can be privately deployed, focusing on providing Obsidian users with a seamless, distraction-free note synchronization plugin with real-time sync across multiple platforms, supporting Mac, Windows, Android, iOS, and offering multilingual support.可私有化部署,专注为 Obsidian 用户提供无打扰、丝般顺滑、多端实时同步的多平台笔记同步插件。
Weread Vault
a month ago by 茜宁郑
Sync WeRead highlights, import book lists, and connect personal reading notes in Obsidian.
Self-hosted LiveSync
a month ago by vrtmrz
Granola Sync
a month ago by tomelliot
Sync Granola notes to your Obsidian vault
Sync Engine
a month ago by Hēsperus
🔄 The fast and extensible synchronization engine for Obsidian.
Community Install Manager
a month ago by Konstantin Volobuev
Allows you to use `community-plugins.js` to search for and automatically install plugins when you launch `obsidian`.
Dedao Brain Importer
a month ago by springrain | 公众号: 及时春雨
在原版基础上修复windows无法手动和自动导入问题,以及优化很多格式转换为markdown
EasySync
a month ago by Jiao Yingxing
EasySync是一款适用于Obsidian的双向OneDrive同步插件,具有冲突保护、移动端支持以及可选的设置/插件同步功能。EasySync is a two-way OneDrive sync plugin for Obsidian with conflict safeguards, mobile support, and optional settings/plugin sync.
Granola Meetings Simple Sync
a month ago by philfreo
"Granola Meetings Simple Sync" Plugin for Obsidian
Bi Ji Tong Bu
a month ago by 笔记同步助手
Bi Ji Tong Bu (笔记同步助手) for Obsidian — marketplace edition (no self-update; full disclosures)