Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Quick BrowseNew to Visual Studio Code? Get it now.
Quick Browse

Quick Browse

Liangqin

|
477 installs
| (0) | Free
Enables quick open current file in browser
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Introduction

This extension enables you open the current file in browser based on the file path.

Quick Browse

Settings

Here is an example to enable the files under the quick-browse folder for quick browse in github. Press Ctrl+Alt+B to open the current file in the github.

"quickBrowse.rules": [
    {
        "pattern": ".+?/quick-browse/(.*)",
        "list": [
            "https://github.com/sunliangqin/VSCodeQuickBrowse/blob/master/$1"
        ]
    }
]
  • pattern: a regular expression to match the current file path (use '/' as path separator). The first rule that matches will be used for quick browse.
  • list: a list of urls for quick browse. Use $n to reference the capturing groups defined in pattern.
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft