Current View

by Lucas Ostmann
5
4
3
2
1
Score: 47/100

Description

The current-view plugin lets you control the default view mode for notes by applying rules based on folder paths, file name patterns, or frontmatter metadata. It can automatically switch between Reading, Live Preview, and Source modes when opening a note, making the experience more consistent for different contexts like templates, daily notes, or drafts.

Reviews

No reviews yet.

Stats

20
stars
3,289
downloads
2
forks
306
days
2
days
18
days
37
total PRs
10
open PRs
4
closed PRs
23
merged PRs
7
total issues
1
open issues
6
closed issues
0
commits

Latest Version

19 days ago

Changelog

1.5.2 (2026-04-21)

Bug Fixes

  • improve lock icon contrast on active sidebar items (8622d2b)

README file from

Github

Current View for Obsidian


✨ Features

📖 Automatic View Mode Control

Automatically applies the right view mode when opening notes based on your rules:

  • Reading mode for documentation and finished content
  • Live Preview for active note-taking
  • Source mode for templates and technical notes

🎯 Flexible Rule System

Configure view modes based on:

  • 📁 Folder paths – All notes in Templates/ open in Source mode
  • 🔍 File patterns – Match files using RegEx (e.g., all daily notes)
  • 🏷️ Tag rules – Match notes by Obsidian tags (e.g., all notes tagged sent open in Reading mode)
  • 📋 Frontmatter – Per-note control with custom metadata field

🔒 Quick Lock from Context Menu

Right-click any file or folder in the File Explorer or Notebook Navigator to instantly lock it to a specific view mode.

🏷️ Visual Lock Indicators

See at a glance which files and folders are locked with inline icon badges:

  • 📖 Book icon – Locked to Reading mode
  • 🖊️ Pen icon – Locked to Live Preview
  • 💻 Code icon – Locked to Source mode

🔌 Notebook Navigator Integration

Full support for Notebook Navigator plugin:

  • ✅ Context menu integration using official API (v1.2.0+)
  • ✅ Lock icons in both navigation pane and file list
  • ✅ Real-time updates when locking/unlocking

🧠 How It Works

View Mode Priority

When you open a note, Current View checks for view mode rules in this order:

1. File Pattern Rules  →  Exact path match or RegEx pattern
2. Tag Rules           →  Any matching tag in frontmatter
3. Folder Rules        →  Deepest matching folder wins
4. Frontmatter         →  Per-note override
5. Obsidian Default    →  Your global Obsidian setting

Example:

  • You have a folder rule: Templates/ → Source mode
  • You open Templates/meeting-note.md
  • The note has frontmatter: current view: reading
  • Result: Opens in Reading mode (frontmatter wins)

Example with tag rule:

  • You have a tag rule: sent → Reading mode
  • You open a note with tags: [sent] in its frontmatter
  • Result: Opens in Reading mode (tag rule applies automatically)

📑 Usage Examples

Frontmatter Control

Add a frontmatter field to any note for per-note control:

---
current view: reading     # Options: reading, source, live
---

You can customize the frontmatter key in plugin settings (e.g., change it to view-mode or display).

Common Use Cases

📚 Documentation vault:

# Lock all files in Docs/ to Reading mode
Folder: Docs/
Mode: reading

🗓️ Daily notes:

# Match pattern like "2024-01-15.md"
Pattern: ^\d{4}-\d{2}-\d{2}\.md$
Mode: live

⚙️ Templates:

# All templates open in Source mode for editing
Folder: Templates/
Mode: source

📬 Published/sent notes:

# Notes tagged with 'sent' or 'published' open in Reading mode
Tag: sent
Mode: reading

Any note with tags: [sent] in its frontmatter will automatically open in Reading mode.


⚙️ Settings

Core Settings

Setting Description Default
Frontmatter key Which frontmatter field to read for view mode current view
Debounce timeout Delay (ms) before applying view mode to prevent rapid switching 0

Behavior Options

Setting Description Default
Ignore opened files Don't change view mode for notes already open in workspace false
Ignore force view when not in frontmatter Only apply rules if frontmatter explicitly sets a view mode false

Visual Feedback

Setting Description Default
Show explorer icons Display lock icons next to files/folders in File Explorer and Notebook Navigator true
Show lock notifications Show notice when locking/unlocking via context menu true

Rules Configuration

  • Folder Rules: Apply view mode to all notes in a folder (context menu locks write here)
  • Tag Rules: Apply view mode to notes that have a specific tag
  • File Patterns: RegEx patterns or exact file paths (context menu file locks write here)

📦 Installation

  1. Open SettingsCommunity Plugins in Obsidian
  2. Click Browse and search for "Current View"
  3. Click Install, then Enable

Via BRAT

Use BRAT only if you want to test beta builds before they are released in the Obsidian Community Plugins directory.

  1. Install BRAT plugin
  2. In BRAT settings, click Add Beta Plugin
  3. Enter: LucEast/obsidian-current-view
  4. In BRAT, choose the latest beta release (for example 1.5.2-beta.1)
  5. Enable the plugin in Community Plugins

Beta Channel Notes

  • Stable releases use plain versions like 1.5.2 and are distributed through the Obsidian Community Plugins directory.
  • Beta releases use versions like 1.5.2-beta.1 and are distributed through GitHub Releases for BRAT testers.
  • Obsidian does not fully support semantic version pre-release handling for community plugins. If you install 1.5.2-beta.1 via BRAT, Obsidian may not automatically switch you to the stable 1.5.2 release later.
  • If you test beta builds, treat BRAT as a separate release channel.

Return From Beta To Stable

If you want to leave the beta channel and go back to the normal Community Plugins release track:

  1. Open BRAT and switch this plugin to the stable release if available there
  2. Or uninstall the BRAT-managed beta version
  3. Reinstall Current View from SettingsCommunity Plugins
  4. Future stable updates should continue normally from the Community Plugins directory

Manual Installation

  1. Download the latest main.js, manifest.json, and styles.css from Releases
  2. Create folder: <vault>/.obsidian/plugins/obsidian-current-view/
  3. Copy the downloaded files into this folder
  4. Reload Obsidian and enable the plugin in SettingsCommunity Plugins

🔗 Compatibility

Supported Plugins

  • Notebook Navigator (v1.2.0+) – Full integration with context menus and lock icons
  • File Explorer – Native Obsidian file explorer support

Requirements

  • Obsidian v1.0.0 or higher

🛠 Development

Setup

git clone https://github.com/LucEast/obsidian-current-view.git
cd obsidian-current-view
npm install

Build Commands

npm run dev          # Watch mode - auto-rebuild on changes
npm run build        # Production build

Testing

npm run test         # Run unit tests once
npm run test:watch   # Watch mode during development
npm run coverage     # Generate V8 coverage report

Architecture

See CLAUDE.md for development guidelines and architecture overview.


🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes using conventional commits (git commit -m 'feat: add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

💡 Support

If you encounter issues or have feature requests:


🙏 Acknowledgments

  • Built for Obsidian
  • Integrated with Notebook Navigator by Johan Sanneblad
  • Inspired by the Obsidian community's need for better view mode control

📝 License

MIT – Free to use and modify.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Note Toolbar
2 years ago by Chris Gurney
Flexible, context-aware toolbars for your notes in Obsidian.
Smart Composer
2 years ago by Heesu Suh
AI chat assistant for Obsidian with contextual awareness, smart writing assistance, and one-click edits. Features vault-aware conversations, semantic search, and local model support.
Execute Code
4 years ago by twibiral
Obsidian Plugin to execute code in a note.
MCP Tools
a year ago by Jack Steam
Add Obsidian integrations like semantic search and custom Templater prompts to Claude or any MCP client.
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Shell commands
5 years ago by Jarkko Linnanvirta
Execute system commands via hotkeys or command palette in Obsidian (https://obsidian.md). Some automated events are also supported, and execution via URI links.
Force note view mode
5 years ago by Benny Wydooghe
Local Backup
3 years ago by GC Chen
Automatically creates a local backup of the vault.
Khoj
3 years ago by Debanjum Singh Solanky
Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (gpt, claude, gemini, llama, qwen, mistral). Get started - free.
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
Modal forms
3 years ago by Danielo Rodriguez
Define forms for filling data that you will be able to open from anywhere you can run JS
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Front Matter Title
4 years ago by Snezhig
Plugin for Obsidian.md
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
Update frontmatter modified date
3 years ago by Alan Grainger
Automatically update a frontmatter/YAML modified date field
AI Providers
a year ago by Pavel Frankov
This plugin is a hub for setting AI providers (OpenAI-like, Ollama and more) in one place.
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
Note Companion AI
8 months ago by Benjamin Ashgan Shafii
Note Companion: AI assistant for Obsidian that goes beyond just a chat. (prev File Organizer 2000)
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
Featured Image
a year ago by Johan Sanneblad
Obsidian plugin to automatically set a featured image property in your notes based on the first image, YouTube link, or Auto Card Link image found in your document. This allows you to create rich note galleries using Folder Notes and Dataview.
Frontmatter Tag Sugest
4 years ago by Jonathan Miller
Autocompletes tags in Obsidian YAML frontmatter. No more deleting #!
Pieces for Developers
3 years ago by Pieces For Developers
Pieces' powerful extension for Obsidian-MD that allows users to access their code snippets directly within the Obsidian workspace
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Prompt ChatGPT
2 years ago by Coduhuey
Simple Banner
a year ago by Sandro Ducceschi
Visually enhance your Obsidian notes with a customizable banner. Supports icons and time/date display.
Personal Assistant
3 years ago by edony
A plugin that harnesses AI agents and streamlining techniques to help you automatically manage Obsidian.
Shortcut Launcher
4 years ago by MacStories
Trigger shortcuts in Apple's Shortcuts app from Obsidian with custom commands.
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
AI Tagger
2 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
Frontmatter Markdown Links
a year ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
Enhanced Canvas
a year ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
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.
Differential ZIP Backup
2 years ago by vorotamoroz
Dataview (to) Properties
10 months ago by Mara-Li
Sync inline Dataview to properties (YAML frontmatter)
Front Matter Timestamps
2 years ago by LighthouseDino
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
Day and Night
4 years ago by Kevin Patel
An Obsidian plugin to automatically switch between day and night themes based on a set schedule
Linkify
4 years ago by Matthew Chan
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Automatic Linker
a year ago by Kodai Nakamura
Weekly Review
3 years ago by Brandon Boswell
Auto Filename
3 years ago by rcsaquino
Auto Filename is an Obsidian.md plugin that automatically renames files in Obsidian based on the first x characters of the file, saving you time and effort.
Banners Reloaded
2 months ago by Dani García
A simple, fast, and lightweight way to add customizable banners to your notes.
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
InlineAI
a year ago by FBarrca
Virtual Footer
a year ago by Signynt
Display markdown text (including dataview queries or Obsidian bases) at the bottom or top of all notes which match a specified rule, without modifying them.
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.
Snippets
5 years ago by Pelao
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
FuzzyTag
3 years ago by Adrian
Fold Properties By Default
a year ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
Frontmatter Alias Display
3 years ago by muhammadv-i
A plugin for Obsidian.md to show front-matter aliases as display names in the file menu.
Add an ID to the front matter
3 years ago by llimllib
Gnome Terminal Loader
3 years ago by David Carmichael
Auto Periodic Notes
2 years ago by Jamie Hurst
Obsidian plugin to create new periodic notes automatically in the background and allow these to be pinned in your open tabs. Requires the "Periodic Notes" plugin.
Note aliases
3 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Auto Hyperlink
3 years ago by take6
Automation
2 years ago by Benature
Auto Front Matter
3 years ago by conorzhong
NoteMover shortcut
a year ago by Lars Bücker
Quickly and easily move notes to predefined folders. Perfect for organizing your notes.
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Open File by Magic Date
4 years ago by simplgy
Open Related Url
4 years ago by Dan Pickett
R.E.L.A.X.
2 years ago by Syr
Regex Obsidian Plugin
Testing Vault
3 years ago by Michael Pedersen
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Babashka
3 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
NeuroVox
a year ago by Synaptic Labs
Obsidian plugin for transcription and generation
Run
2 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Blueprint
3 months ago by François Vaux
Repeatable templates plugin for Obsidian
Steward
6 months ago by Dang Nguyen
A vault-specific agent equipped with agentic capacity, fast search, flexible commands, vault management, and terminals to "jump" into other CLI agents, such as Claude, Gemini, etc.
RSS Copyist
2 years ago by aoout
Get the RSS articles as notes.
Set View Mode per Note
2 years ago by Alex Davies
Use YAML frontmatter to specify a view mode per note.
Tag Breakdown Generator
3 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Sort Frontmatter
2 years ago by Kanzi
Sort frontmatter automatically
Note 2 Tag Generator
2 years ago by Augustin
Conditional Properties
4 months ago by Diego Eis
Automate frontmatter property updates in your Obsidian notes using simple conditional rules.
Daily note creator
2 years ago by Mario Holubar
Automatically creates missing daily notes.
Personal OS
2 years ago by A.Buot
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Todos sort
a year ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Google Calendar Importer
7 months ago by Fan Li
A simple and light-weighted google calendar importer, allow injecting the events / tasks of a day automatically to your daily notes, or import it to anywhere with a command.
Auto Replacer
10 months ago by Alecell
A live text replacement plugin that applies automatic formatting, corrections, or custom replacements in real-time. Define your own regex-based rules and transformation logic to modify text dynamically as you type.
Timeline Canvas Creator
10 months ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Inkporter
a year ago by Ayush Kumar Saroj
Inkporter is an Obsidian plugin that digitizes handwritten notes with smart ink isolation, adaptive theming, and seamless import workflows.
Colorful Note Background
4 months ago by andresgongora
Set note background based on file location or frontmatter metadata
Missing Link File Creator
a year ago by Lemon695
The plugin creates both missing links and the corresponding files.
Last Position
a year ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
Vault File Renamer
a year ago by Louan Fontenele
Vault File Renamer: Automatically standardizes file names to GitHub style (lowercase, no accents, only -, ., _) while preserving folder structure and file contents.
pycalc
a year ago by pycalc
LinkMagic
2 years ago by AndyReifman
AI integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Paste Image Into Property
a year ago by Nito
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.
tidit
a year ago by codingthings.com
tidit is an Obsidian - https://obsidian.md - plugin that adds timestamps to your document as you type — when you want it, how you want it, where you want it.
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
URL Formatter
8 months ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
Note Favicon
a year ago by mdklab
Obsidian plugin – Show Favicon from Metadata
Connections
4 months ago by Eric Van Cleve
Update Time Updater
2 years ago by MURATAGAWA Kei
Obsidian plugin to update the 'update time' element when saving or manually.
AI Note Tagger
a year ago by Jasper Mayone
Auto tagging obsidian notes w/ AI
Rapid AI
2 years ago by Rapid AI
AI Assistant for selected text and generating content with Markdown. Shortcuts and quick action buttons provide instant AI assistance. It provides a high availability API for unlimited Chat GPT request rates, so you can ensure smooth work for any workload.
Draft Indicator
2 years ago by Brian Boucheron
Show draft status with ✎ icons in the Obsidian file explorer.
Hotstrings
a year ago by wakywayne
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
Tasks Cleaner
a year ago by lowit
🧹 Tasks Cleaner is a plugin for Obsidian that helps you automatically remove old completed tasks from your Markdown notes
Varinote
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to add variables in Templates and set their values during the Note creation.
Template Folder
10 months ago by LucasOe
Obsidian plugin to move notes to a folder when applying a template.
Rsync
a year ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
Mastodon Threading
a year ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
NotePix
8 months ago by Ayush Parkara
NotePix automatically uploads images, screenshots from your Obsidian vault to a designated GitHub repository. It then seamlessly replaces the local link with a fast URL, keeping your vault lightweight and portable.
Discord Message Sender
10 months ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
Plugin REPL
a year ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Note From Form
a year ago by Sergei Kosivchenko
Obsidian plugin that adds support to define input form and generate notes based on it
Auto Daily Note
a year ago by John Dolittle
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
Daily Notes Automater
a year ago by David Pedrero
Copy Local Graph Paths
a year ago by Amy Z
copy-local-graph-paths is a simple Obsidian plugin that copies the paths of notes linked to your current page.
Open or Create File
7 months ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Blog AI Generator
a year ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
Paste as Embed
2 years ago by Matt Laporte
Obsidian plugin to paste contents of clipboard into a new note, and embed it in the active note.
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
Publish Note to Mowen Note
9 months ago by ziyou
This is a mowen plugin for Obsidian (https://obsidian.md)
Frontmatter Metadata Link Classes
10 months ago by Varvara Zmeeva / zmeeva.io
Enhanced internal links with automatic classnames based on frontmatter metadata.
IMSwitch in Math Block
a year ago by XXM
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
Random Wikipedia Article
10 months ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
Hanko
a year ago by Telehakke
Obsidian plugin.
Title-Only Tab
a year ago by tristone13th
a plugin of obsidian for to change showing tab name to short
Handlebars Dynamic Templating
3 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
KOI Sync
a year ago by Luke Miller
Content OS
8 months ago by eharris128
Post to LinkedIn from within Obsidian
Move Cursor On Startup
8 months ago by Jared Kelnhofer
Obsidian plugin to move the cursor to the right and back to the left when starting up. Why? To keep DataView expressions from not running on the first load of, say, your Home file.
One Step Wiki Link
a year ago by Busyo
用于 Obsidian 一步插入当前界面匹配到的所有外链(维基链接)
Frontmatter to HTML Attributes
2 months ago by Tarek Saier
Makes YAML frontmatter available as data-* attributes in HTML, enabling metadata based CSS styling.
Insert Arknights URL Banner
10 months ago by Rerurate_514
Obsidianのプラグイン、img_dwnldr_wikigg_ak_ktに保存されている画像を選択してbannersプロパティに簡単に設定できるプラグイン
EUpload
a year ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。