2025-02-27 14:17:51 +00:00
# GridExplorer
2025-03-05 16:29:42 +00:00
English | [日本語 ](README_ja.md ) | [中文 ](README_zhTW.md )
2025-02-27 14:17:51 +00:00
This is a grid view plugin designed for Obsidian, aimed at providing a more intuitive way to browse and manage your notes and folders.
2025-07-11 10:38:05 +00:00

2026-06-12 07:43:35 +00:00

2025-02-27 14:17:51 +00:00
## Features
- **Grid View**: Displays your notes and folders in a grid format for quick browsing.
- **Folder Mode**: Shows notes in a folder structure, supporting entry into subfolders.
- **Bookmark Mode**: Allows quick access to notes in your bookmarks.
- **Search Results Mode**: Displays Obsidian's search results.
2025-06-26 08:56:00 +00:00
- **Backlinks Mode**: Shows notes that link to the current note.
- **Outgoing Links Mode**: Shows outgoing links from the current note, including media files.
- **All Files Mode**: Lists all files in the vault.
- **Recent Files Mode**: Lists the n most recently modified files.
- **Random Files Mode**: Randomly lists n files.
2025-06-29 14:42:53 +00:00
- **Custom Mode**: Customize the displayed file content using Dataview query syntax.
2025-06-26 08:56:00 +00:00
- **Custom Sorting**: Supports various sorting methods, including by name, modification time, random sorting, and per-folder custom sorting.
2025-02-27 14:17:51 +00:00
- **Settings Options**: Allows customization of grid item width and default sorting method.
2025-06-26 08:56:00 +00:00
- **Multilingual Support**: Currently supports English, Traditional Chinese, Simplified Chinese, and Japanese.
2025-02-27 14:17:51 +00:00
## Installation
2025-06-26 08:56:00 +00:00
Find "GridExplorer" in the Community plugins through the Obsidian app.
2025-02-27 14:17:51 +00:00
## Usage
- Click the grid icon in the toolbar to open the grid view.
- Use the right-click menu to select "Open in Grid View" on a folder.
2025-03-18 10:53:45 +00:00
- Use command to view the current note in the grid view (If there is no active note currently, open the root directory).
2025-02-27 14:17:51 +00:00
- In the grid view, you can click on notes to open them or click on folders to enter them.
2025-06-29 14:42:53 +00:00
## Supported File Formats
### Image Formats
- `jpg` / `jpeg`
- `png`
- `gif`
- `webp`
- `avif`
- `bmp`
- `svg`
### Video Formats
- `mp4`
- `webm`
- `mov`
- `avi`
- `mkv`
- `ogv`
### Audio Formats
- `flac`
- `m4a`
- `mp3`
- `ogg`
- `wav`
- `3gp`
### Document Formats
- `md` (Markdown)
- `pdf`
- `canvas`
- `base`
2026-06-07 17:56:16 +00:00
- `zip`
2025-06-29 14:42:53 +00:00
2025-04-03 16:32:07 +00:00
## Folder Notes
Create a folder note by using the right-click menu on a folder. After creation, you'll see an icon on the folder, and you can set the folder's sorting method in the note's Metadata.
```
---
sort: name-desc
2025-04-06 16:17:31 +00:00
color: red
2025-04-03 16:32:07 +00:00
---
```
Available sorting methods:
- name-asc
2025-04-06 16:17:31 +00:00
- name-desc
2025-04-03 16:32:07 +00:00
- mtime-desc
- mtime-asc
- ctime-desc
- ctime-asc
- random
2025-04-06 16:17:31 +00:00
Available colors:
- red
- orange
- yellow
- green
- cyan
- blue
- purple
- pink
2025-07-14 16:25:13 +00:00
## CSS Class
| Mode/Feature | CSS Class |
|-------------|-----------|
2025-07-14 16:28:42 +00:00
| Custom Mode | `.ge-mode-custom` |
| Folder Mode | `.ge-mode-folder` |
| Bookmarks | `.ge-mode-bookmarks` |
| Search | `.ge-mode-search` |
| Backlinks | `.ge-mode-backlinks` |
| Outgoing Links | `.ge-mode-outgoinglinks` |
| All Files | `.ge-mode-all-files` |
| Recent Files | `.ge-mode-recent-files` |
| Random Files | `.ge-mode-random-note` |
| Tasks | `.ge-mode-tasks` |
2025-07-14 16:25:13 +00:00
| Folder Notes | `.ge-foldernote` |
| Pinned Items | `.ge-pinned` |
2025-06-18 15:29:27 +00:00
2025-02-27 14:17:51 +00:00
## Contribution
If you have any suggestions or encounter issues, feel free to raise issues or submit pull requests.
## License
2025-04-03 16:32:07 +00:00
This plugin follows the [MIT License ](LICENSE ).