Boardgame Search

by Marlon May
5
4
3
2
1
Score: 52/100

Description

The Boardgame Search plugin allows users to track and manage their board game collection within Obsidian. It integrates with BoardGameGeek to search and import game details, automatically creating entries with metadata such as player count, playtime, and ratings. Users can customize entry formats, store game images, and analyze statistics using visualizations. The plugin provides flexible options for organizing and retrieving game information, making it easier to document collections and track gaming sessions. It also supports integration with Obsidian's charting capabilities for deeper insights into gameplay trends.

Reviews

No reviews yet.

Stats

13
stars
1,047
downloads
3
forks
467
days
79
days
79
days
3
total PRs
0
open PRs
1
closed PRs
2
merged PRs
11
total issues
2
open issues
9
closed issues
25
commits

Latest Version

3 months ago

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/Marlon154/boardgame-search/compare/2.2.0...2.3.0

README file from

Github

⚠️ Important: BGG API Changes

Action Required: BoardGameGeek now requires API key registration for all API access.

What You Need to Do

  1. Update the plugin to the latest version (2.0.0+) that supports API keys
  2. Create a BGG account at BoardGameGeek if you don't have one
  3. Register your application at BoardGameGeek Applications
    • Note: Approval typically takes a few days
    • Most users should select "non-commercial" for personal use
  4. Generate an API token once your application is approved
  5. Add your token in Obsidian → Settings → Board Search → Insert at BoradGameGeek API key

Why This Matters

Without an API key, the plugin will not work. BGG now requires authentication for all API requests.

Track and manage your board game collection directly within Obsidian.

Features

🎲 Board Game Integration

  • Search and import board games from BoardGameGeek (BGG)
  • Automatically create game entries with detailed metadata
  • Download and save game cover images
  • Include game categories and mechanics in game details
Image download quality

Images are downloaded and stored in different resolutions to optimize for various use cases. Here is an example comparison of the different image sizes and their characteristics:

Version Dimensions File Size Percentage
Thumbnail 95 x 150 3.4 KB 11%
Medium 244 x 385 14.1 KB 47%
Full 488 x 771 29.9 KB 100%

📊 Session Tracking

Work in progress - Record individual game play sessions - Track players, winners, play time, and notes - Append session details to game entries

🛠️ Customizable Settings

  • Configure file location for game entries
  • Customize file name format
  • Control image saving preferences - Toggle session tracking features

Installation

From Obsidian Plugin Store

  1. Open Obsidian
  2. Go to Settings → Community plugins
  3. Enable Community Plugins
  4. Click "Browse" and search for "Boardgame Search"
  5. Click "Install" and then "Enable"

Manual Installation

  1. Download the latest release from GitHub
  2. Create a folder your-vault/.obsidian/plugins/obsidian-boardgame-plugin
  3. Copy main.js, manifest.json, and styles.css into the folder or just extract and move the zip
  4. Enable the plugin in Obsidian

Usage

Searching for Games

  • Click the dice icon in the ribbon
  • Type the game name in the search bar
  • Browse and select a game
  • Choose to create a game entry or start a game session or use the command Search BoardGameGeek

Creating Game Entries

  • Game entries include:
    • Game title
    • BGG ID
    • Player count
    • Play time
    • Year published
    • Rating
    • Optional thumbnail image

Example Workflow

  1. Click "Search BoardGameGeek"
  2. Search "Catan"
  3. Select the game
  4. Plugin creates a detailed game entry

📈 Statistics and Visualization

  • Support for Obsidian Charts plugin
  • Visualize player count data
  • Age recommendation statistics
  • Language dependency information

Templating

The plugin uses Nunjucks templating for customizable game entries. If no template is defined, it will fall back to a default template.

Use double curly braces to access template variables in your template, for example {{ game.name }} or {{ game.rating }}. The following fields are available:

Game Object Fields

Variable Path Type Description
game.id string BoardGameGeek game ID
game.name string Game name
game.yearPublished string Year the game was published
game.description string Full game description from BGG
game.image string URL or local path to full-size game image
game.thumbnail string URL or local path to thumbnail image
game.minPlayers number Minimum number of players
game.maxPlayers number Maximum number of players
game.playingTime number Average playing time in minutes
game.minPlayTime number Minimum playing time in minutes
game.maxPlayTime number Maximum playing time in minutes
game.minAge number Minimum recommended age
game.rating number BGG average rating (out of 10)
game.weight number Game complexity rating
game.categories string[] Array of game categories
game.mechanics string[] Array of game mechanics

Suggested Player Count

Variable Path Type Description
game.suggestedPlayerCount.best string Community-voted best player count
game.suggestedPlayerCount.recommended string Community-voted recommended player count

Player Count Poll (Array)

Variable Path Type Description
game.playerCountPoll[].playerCount string Number of players (e.g., "3", "4+")
game.playerCountPoll[].votes object Vote counts by category (Best, Recommended, Not Recommended)
game.playerCountPoll[].total number Total votes for this player count

Player Age Poll

Variable Path Type Description
game.playerAgePoll.results[] array Array of age poll results
game.playerAgePoll.results[].value string Age category (e.g., "8+", "12+")
game.playerAgePoll.results[].votes number Number of votes for this age
game.playerAgePoll.totalVotes number Total votes in age poll

Language Dependence Poll

Variable Path Type Description
game.languageDependencePoll.results[] array Array of language dependence results
game.languageDependencePoll.results[].value string Dependence level description
game.languageDependencePoll.results[].votes number Number of votes for this level
game.languageDependencePoll.totalVotes number Total votes in language poll

Additional Context Variables

Variable Type Description
useLocalImages boolean Whether images are saved locally
useCharts boolean Whether Charts plugin integration is enabled
chartWidth string Configured chart width (e.g., "80%", "600px")
date Date Current date/time when note is created

Example Template

## {{game.name}}

### Overview
{% if game.image %}
{% if useLocalImages %}
![[{{ game.image }}]]
{% else %}
![{{ game.name }}]({{ game.image }})
{% endif %}
{% endif %}

### Game Details
- **Min Players:** {{ game.minPlayers | default('Unknown') }}
- **Max Players:** {{ game.maxPlayers | default('Unknown') }}
- **Play Time:** {{ game.playingTime | default('Unknown') }}{% if game.playingTime %} minutes{% endif %}
- **Year Published:** {{ game.yearPublished | default('Unknown') }}
- **BGG Rating:** {{ game.rating | number(1) | default('N/A') }}{% if game.rating %}/10{% endif %}
- **Categories:** {% for category in game.categories %}#{{ category | replace(" ", "_") }}{% if not loop.last %}, {% endif %}{% endfor %}
- **Mechanics:** {% for mechanic in game.mechanics %}#{{ mechanic | replace(" ", "_") }}{% if not loop.last %}, {% endif %}{% endfor %}

### Notes
{% persist "notes" %}
Add your personal notes here - this section won't be overwritten on reimport
{% endpersist %}

Persistent Sections

Use the persist tag to create sections that won't be overwritten on reimport:

{% persist "section-name" %}
Your persistent content here
{% endpersist %}

Inspired by zotero integration.

Array Templates

The categories and mechanics fields are arrays that can be looped through using Nunjucks syntax:

Looping through arrays:

- **Categories:** {% for category in game.categories %}#{{ category | replace(" ", "_") }}{% if not loop.last %}, {% endif %}{% endfor %}
- **Mechanics:** {% for mechanic in game.mechanics %}#{{ mechanic | replace(" ", "_") }}{% if not loop.last %}, {% endif %}{% endfor %}

Template syntax explained:

  • {% for ... in ... %} - Iterate through each item in the array
  • #{{ category | replace(" ", "_") }} - Format as hashtag and replace spaces with underscores
  • {% if not loop.last %}, {% endif %} - Add comma separator between items (but not after the last one)

Example output:

  • Categories: #Strategy, #Family
  • Mechanics: #Worker_Placement, #Hand_Management

Charts Support

If you have the Obsidian Charts plugin installed, enable chart support in settings to visualize data:

{% if useCharts %}
^playerCountData

\`\`\`chart
type: bar
id: playerCountData
layout: rows
width: {{ chartWidth }}
legend: true
title: Player Count Votes
beginAtZero: true
\`\`\`
{% endif %}

Example Overview

Here is an example for a collection, which uses:

Alternatively use Obsidian bases.

Code:

---
notetype: database
cssclasses:
  - cards
  - cards-2-3
  - cards-cover
  - table-max
  - table-nowrap
---

```meta-bind-button
label: New Game
icon: ""
hidden: false
class: ""
tooltip: ""
id: ""
style: default
actions:
  - type: command
    command: boardgame-search:search-bgg

```

```dataview
TABLE WITHOUT ID
	embed(link(meta(link(image)).path)) as "",
	link(file.link, title) as Title,
	ownership,
	choice(played, "✅", " - ") as Played
FROM #boardgame 
WHERE !contains(file.path, "templates")
SORT title ASC
```

Support

If you find this plugin useful, please consider a donation.

Contributing

  • Report issues on GitHub
  • Submit pull requests

Credits

This plugin uses the BoardGameGeek XML API 2 to fetch game data. All game information is provided by BoardGameGeek.

Powered by BoardGameGeek

All game data is property of BoardGameGeek and its users. Usage of this plugin is subject to BoardGameGeek's Terms of Service and XML API Terms of Use.

Built for the Obsidian community.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Obsidian Graphviz
4 years ago by Feng Peng
Graphviz plugin for obsidian md.
Binary File Manager
4 years ago by qawatake
An Obsidian plugin to manage binary files
Heatmap Calendar
4 years ago by Richard Slettevoll
An Obsidian plugin for displaying data in a calendar similar to the github activity calendar
Desmos
4 years ago by Nigecat
Embed graphs directly into your obsidian notes
Auto Card Link
4 years ago by Nekoshita Yuki
Release Timeline
4 years ago by cakechaser
Media DB Plugin
4 years ago by Moritz Jung
A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.
Diagrams.Net
4 years ago by Jens M Gleditsch
This repository contains a plugin for Obsidian for inserting and editing diagrams.net (previously draw.io) diagrams.
Habit Tracker
4 years ago by David Moeller
A Plugin to display a Habit Tracker in Obsidian.
Metadata Menu
4 years ago by mdelobelle
For data management enthusiasts : type and manage the metadata of your notes.
Custom File Explorer sorting
4 years ago by SebastianMC
Take full control over the order and sorting of folders and notes in File Explorer in Obsidian
Meta Bind Plugin
4 years ago by Moritz Jung
A plugin for Obsidian to make your notes interactive with inline input fields, metadata displays, and buttons.
Plugin Update Tracker
4 years ago by Steven Swartz
Know when installed obsidian plugins have updates and evaluate the risk of upgrading
Old Note Admonitor
3 years ago by tadashi-aikawa
Dirtreeist
3 years ago by kasahala
Render a directory Structure Diagram from a markdown lists in codeblock.
D2
3 years ago by Terrastruct
The official D2 plugin for Obsidian. D2 is a modern diagram scripting language thats turns text to diagrams.
Link Exploder
3 years ago by Ben Hughes
Adamantine Pick
3 years ago by Urist McMiner
Embeddable Pikchr(https://pikchr.org) diagrams renderer plugin for Obsidian(https://obsidian.md)
Canvas Filter
3 years ago by Ivan Koshelev
Obsidian Canvas plugin that let's you show only pages / arrows with specific tags / colors / connections.
Note aliases
3 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Habit Calendar
3 years ago by Hedonihilist
Monthly Habit Calendar for DataviewJS. This plugin helps you render a calendar inside DataviewJS code block, showing your habit status within a month.
Optimize Canvas Connections
3 years ago by Félix Chénier
An Obsidian plugin that declutters a canvas by reconnecting notes using their nearest edges
April's Automatic Timelines
3 years ago by April Gras
Simple timeline generator plugin for story tellers using obsidian
Linked Data Vocabularies
3 years ago by kometenstaub
Add linked data to the YAML of your Obsidian notes.
Canvas Links
3 years ago by aqav
Show the links between "Canvas" and "File"
Lilypond
3 years ago by DOT-ASTERISK
Lilypond for Obsidian
Chemical Structure Renderer
3 years ago by xaya1001
Render chemical structures from SMILES strings into PNG or SVG format using Ketcher and Indigo Service.
Notes dater
3 years ago by Paul Treanor
Adds created_on and updated_on dates of the active note to status bar
Laws of Form
3 years ago by Kevin German
Bulk Exporter
3 years ago by symunona
Bulk export Markdown filtered, renamed and sorted by front matter metadata into a new structure.
Waka time box
3 years ago by complexzeng
BattleSnake Board Viewer
3 years ago by EnderInvader
Plugin to render battlesnake boards in Obsidian
Nifty Links
3 years ago by x-Ai
Generating elegant, Notion-styled rich link cards to enhance your note-taking experience.
Copy Metadata
3 years ago by wenlzhang
An Obsidian plugin to copy metadata to clipboard and insert it into file name.
Auto Tag
3 years ago by Control Alt
Easily generate relevant tags for your Obsidian notes.
Tracker+
3 years ago by GreaterThan (original by pyrochlore)
A plugin for Obsidian that tracks and visualizes in your notes. A continuation of the plugin originally developed by @pyrochlore
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
File Index
2 years ago by Steffo
Obsidian plugin to create a metadata file about the files present in the Vault
Time Things
2 years ago by Nick Winters
Show clock, track time spent editing a note, and track the last time a note has been edited.
Show Whitespace
2 years ago by Erin Schnabel
Show leading/trailing whitespace
Desk
2 years ago by David Landry
A desk for obsidian
Note Gallery
2 years ago by Pash Shocky
A masonry note gallery for obsidian.
Habit Tracker 21
2 years ago by zoreet
Storyclock Viewer
2 years ago by Jonathan Fisher
Obsidian plugin for creating a storyclock
Additional Icons
2 years ago by Matthew Turk
Add additional iconsets to Obsidian
Markline
2 years ago by 闲耘
Markline: Markdown timeline view in Obsidian.
Contribution Graph
2 years ago by vran
generate interactive gitxxx style contribution graph for obsidian, use it to track your goals, habits, or anything else you want to track.
Mathematica Plot
2 years ago by Marcos Nicolau
Insert functions on Obsidian using Wolfram Mathematica!
Arrows
2 years ago by artisticat
Draw arrows across different parts of your notes, similar to on paper
Alfonso Money Manager
2 years ago by SmartLifeGPT Innovation
This is the repository for the obsidian plugin of the Alfonso Money Manager mobile application
CardNote
2 years ago by cycsd
Help you extract your thoughts more quickly in canvas
Graph Link Types
2 years ago by natefrisch01
Link types for Obsidian graph view.
Metadata Icon
2 years ago by Benature
change metadata entry icon
Filtered Opener
2 years ago by Roman Kubiv
Sets of notes defined by filters to open notes.
Track-a-Lot
2 years ago by Iulian Onofrei
This is a tracker plugin for Obsidian
Canvas Mindmap Helper
2 years ago by Tim Smart
Advanced Canvas
2 years ago by Developer-Mike
⚡ Supercharge your canvas experience! Graph view integration and unlimited styling options empower flowcharts, dynamic presentations, and interconnected knowledge.
historica
2 years ago by Nhan Nguyen
Not (smart) to help you create your timeline in obsidian like a ... bro
Mehrmaid
2 years ago by huterguier
Rendering Obsidian Markdown inside Mermaid diagrams.
IMDb
2 years ago by Andrew Chen
A simple plugin for syncing movies from IMDb to Obsidian
Mindmap
2 years ago by YunXiaoYi
An Obsidian plugin for creating Mindmaps.
Update Time
2 years ago by Sébastien Dubois
Obsidian plugin that updates front matter to include creation and last update times
Graph Banner
2 years ago by ras0q
An Obsidian plugin to display a relation graph view on the note header.
Smart Connections Visualizer
2 years ago by Evan Moscoso
Visualize your notes and see links to related content with AI embeddings. Use local models or 100+ via APIs like Claude, Gemini, ChatGPT & Llama 3
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
NyanBar
2 years ago by xhyabunny
Give life to your Obsidian notes with NyanBar !
Image Metadata
2 years ago by alexeiskachykhin
Adds image metadata editing capabilities to Obsidian
Magic Move
2 years ago by imfenghuang
Animating Code Blocks in Obsidian
Mahjong Renderer
2 years ago by hypersphere
Canvas Explorer
2 years ago by Henri Jamet
A plugin that enables users to explore their vault by iteratively adding or ignoring linked notes, ultimately generating a customizable canvas that visually represents the preserved notes and their connections.
Virus Total Enrichment
2 years ago by ytisf
An Obsidian plugin to enrich a note with VirusTotal API.
Onto Tracker
2 years ago by Jacob Hart
Plugin for obsidian allowing project management with ontologies.
Neo4j Graph View
5 years ago by Emile van Krieken
Daily Activity
5 years ago by trydalch
Chessboard Viewer
5 years ago by Davide Aversa
Plugin to render chessboards in Obsidian using chessboardjs
Excalidraw
5 years ago by Zsolt Viczian
A plugin to edit and view Excalidraw drawings in Obsidian
Supercharged Links
5 years ago by mdelobelle
obsidian plugin to add attributes and context menu options to internal links
MetaEdit
5 years ago by Christian B. B. Houmann
MetaEdit for Obsidian
Argument Map with Argdown
5 years ago by amdecker
Habit Tracker
5 years ago by duo
This plguin for Obsidian creates a simple month view for visualizing your punch records.
Map View
5 years ago by esm
Interactive map view for Obsidian.md
Initiative Tracker
5 years ago by Jeremy Valentine
TTRPG Initiative Tracker for Obsidian.md
WaveDrom
5 years ago by Alex Stewart
Markmind
5 years ago by Mark
A mind map, outline for obsidian,It support mobile and desktop
Metadata Extractor
5 years ago by kometenstaub
Obsidian Plugin that provides metadata export for use with third-party apps.
Update time on edit
5 years ago by beaussan
Word Sprint
4 years ago by Andrew Lombardi
Obsidian Word Sprint plugin
Lineup Builder
4 years ago by James Fallon
An Obsidian plugin that lets you build football lineups
Mapbox Location Image
2 years ago by Aaron Czichon
Render a mapbox location image based on provided coordinates
Poker Range
2 years ago by marplek
Easily create, view, and interact with poker hand ranges in your obsidian.
Crackboard
2 years ago by Franklin
Obsidian plugin for crackboard.dev
InfraNodus AI Graph View
2 years ago by Nodus Labs
Advanced graph view for Obsidian: text analysis, topic modeling, and AI with InfraNodus AI text analysis tool: https://infranodus.com
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
Folder Canvas
a year ago by Nancy Lee
Generate a canvas view of your folder structure
Heatmap Tracker
a year ago by Maksim Rubanau
A customizable heatmap tracker plugin for Obsidian to visualize daily data trends with intuitive navigation and flexible settings.
Class Relation Visualization
a year ago by Yong
ExMemo Assistant
a year ago by ExMemo AI
Using LLMs to manage files and generating metadata such as tags and summaries.
Kale Graph
a year ago by Oli
Render mathematical graphs in Obsidian
NodeFlow
a year ago by LincZero
Render node streams like `ComfyUi`, `UE`, `Houdini`, `Blender`, etc., to make it easy to write relevant notes. json describes the chart, compared to screenshots, making it easier to modify later. The plugin is also compatible with blogs.",
Easy Timeline
a year ago by Romeliun
The Easy Timeline plugin for Obsidian allows you to create timelines easily.
KoReader Highlight Importer
a year ago by Tahsin Kocaman
Imports highlights and metadata from KoReader into Obsidian notes
Frontmatter Markdown Links
a year ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Keep the Rhythm
a year ago by Ezben
An Obsidian plugin to track your daily word count through a heatmap.
Sentinel
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to update properties or run commands based on document visibility changes.
ShaahMaat-md
a year ago by Mihail Kovachev
Mahgen Renderer
a year ago by Michael Francis Williams
Obsidian plugin to render mahgen automatically
Current File Tags
a year ago by Trung Tran
Dataview Autocompletion
a year ago by Daniel Bauer
NetClip
a year ago by Elhary
this plugin is for Obsidian that allows you to browse the web and clip webpages directly into your vault.
Tag Tactician
a year ago by Scott Tomaszewski
Media Companion
a year ago by Nick de Bruin
Enhanced Canvas
a year ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
Fold Properties By Default
a year ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Every Day Calendar
a year ago by QuBe
Obsidian plugin to create calendars inspired by Simone Giertz's Every Day Calendar
Flowcharts
a year ago by land0r
Flowchart Plugin for Obsidian – Create and customize flowcharts seamlessly within your Obsidian vault. Powered by Flowchart.js and designed for productivity
Extended File Support
a year ago by Nick de Bruin
Adds opening and embedding support for various filetypes to Obsidian
LLM Tagger
a year ago by David Jayatillake
YourPulse - Your Writing Activity Visualised
a year ago by Jiri Sifalda
YourPulse.cc - Obsidian.md plugin that turns your vault into a reflection of your creativity, and put your writing on steroids 💪
Paste Image Into Property
a year ago by Nito
My Thesaurus
a year ago by Mara-Li
A plugin that auto tags file based on contents and a csv file or a Markdown table (inspired by https://github.com/pmartinolli/MyThesaurus)
Content Cards
a year ago by leo
Insert content cards in Markdown, such as timeline, highlightblock, target card, book information card, music information card, movie information card, photoes ablum, business card, content subfield, countdown, SWOT,BCG.
ASCII Tree Generator
a year ago by Matěj Michálek
AI Tagger Universe
a year ago by Hu Nie
An intelligent Obsidian plugin that leverages AI to automatically analyze note content and suggest relevant tags, supporting both local and cloud-based LLM services.
Tier List
a year ago by Mox Alehin
Obsidian plugin for visual ranking and organizing content into customizable Tier Lists.
Export Graph View
a year ago by Sean McGhee
Plugin to export your vault's graph view.
Waveform Player
a year ago by Zhou Hua
Note Favicon
a year ago by mdklab
Obsidian plugin – Show Favicon from Metadata
Tagvis
a year ago by Mason Bryant
File Title Updater
a year ago by wenlzhang
An Obsidian plugin that synchronizes titles between filename, frontmatter, and first heading in your notes.
Advanced Progress Bars
a year ago by cactuzhead
Obsidian plugin to create custom progress bars
Extended Graph
a year ago by Kapirklaa
Community plugin to add features to the graph view.
Node Factor
a year ago by CalfMoon
Customize factors effecting node size in obsidian graph.
Kanban Status Updater
a year ago by Ankit Kapur
Obsidian plugin that automatically updates the note property when card is moved to a column.
Generate Timeline
a year ago by Shanshuimei
An obsidian plugin to generate timelines from tags, folders, files or metadata automatically. 根据标签,文件夹,文件或者属性自动生成时间轴的插件。
Simple File Info
a year ago by Lukas Capkovic
Smart Vault Visualizer
a year ago by Evan Moscoso
Another Name
a year ago by Jiyuan Wang
Add a subheading to your note in Obsidian
GitHub Integration
a year ago by Kirill Zhuravlev
Plugin that fetch your github stars into notes
Timelive
a year ago by aNNiMON
Turn a list of dates into a timeline
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Sidebar Highlights
10 months ago by trevware
Symbol linking
10 months ago by Evan Bonsignori ; Mara-Li
Adds ability to link with any trigger in Obsidian. Each trigger can limit linking to specific folders or file.
Frontmatter Metadata Link Classes
10 months ago by Varvara Zmeeva / zmeeva.io
Enhanced internal links with automatic classnames based on frontmatter metadata.
New 3D Graph
9 months ago by Aryan Gupta
Visualize your vault in 3D with a powerful, highly customizable, and filterable graph.
Discrete
9 months ago by shkarlsson
Tiny Habits
8 months ago by Diego Nazoa
Obsidian Plugin for habit tracking with Svelte
Papers
8 months ago by William Liang
An obsidian plugin to retrieve and import research papers.
Note Codes
8 months ago by Ezhik
Reference your Obsidian notes from anywhere with simple 4-character codes.
Maps
7 months ago by Obsidian
Map layout for Obsidian Bases. Display your notes as an interactive map view.
Tasks Map
7 months ago by NicoKNL
A graph view of your tasks.
Visited Countries
7 months ago by Ivan Peshykov
Obsidian plugin to mark and visualize the countries you've visited on an interactive world map.
Pretty Properties
6 months ago by Anareaty
Life in Weeks Calendar
6 months ago by Jeff Szuc
Plugin for the Obsidian markdown editor. Displays a calendar of your life in weeks with weekly Periodic Notes plugin integration. Includes options for the traditional Memento Mori/Stoic style calendar, as well as a Gregorian calendar accurate version.
Book Clipper
5 months ago by Hossein Fardmohammadi
Save book details from websites into your notes
Conditional Properties
4 months ago by Diego Eis
Automate frontmatter property updates in your Obsidian notes using simple conditional rules.
GoBoard
4 months ago by Dmitry I. Sokolov
Obsidian plugin for rendering Go game diagrams from markdown code blocks
Easy Tracker
3 months ago by Hunter Ji
An Obsidian plugin for ultra-simple goal and habit tracking in any note.
Workout Planner
3 months ago by Rares Spatariu
Weather Widget
3 months ago by mr-asa
Weather widget for display in notes, Canvas, and a separate tab.
Inline Local Graph
3 months ago by TKOxff
Inline Local Graph of Obsidian
GLSL Viewer
3 months ago by iY0Yi
Preview GLSL shaders on Obsidian.
Mermaid Icons
3 months ago by toshs
Obsidian plugin enabling the use of icons in Mermaid diagrams.
Frontmatter to HTML Attributes
2 months ago by Tarek Saier
Makes YAML frontmatter available as data-* attributes in HTML, enabling metadata based CSS styling.