# vsc-open-in-integrated-browser **Repository Path**: NEVSTOP-LAB/vsc-open-in-integrated-browser ## Basic Information - **Project Name**: vsc-open-in-integrated-browser - **Description**: A lightweight VS Code extension that adds an "Open in Integrated Browser" command to the Explorer and editor tab context menus - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: https://marketplace.visualstudio.com/items?itemName=NEVSTOP-LAB.vsc-open-in-integrated-browser - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-12 - **Last Updated**: 2026-07-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Open in Integrated Browser A lightweight VS Code extension for opening files directly in VS Code's integrated browser. ## Features - Adds **Open in Integrated Browser** to right-click menus. - Supports Explorer, editor tab, and editor context menus. - Lets you control each file extension with a checkbox-like setting. - Can make selected file types open in the integrated browser by default. - Localized in **English** and **简体中文**. ## How To Use 1. In Explorer or an opened editor, right-click a supported file. 2. Choose **Open in Integrated Browser**. 3. The file opens in VS Code's integrated browser view. ## Default supported file extensions ``` html, htm, svg, xml, xsl ``` ## Configuration ### `openInIntegratedBrowser.autoAssociateAsDefaultByExtension` - **Type**: `Record` - **Default**: `{ html: true, htm: true, svg: true, xml: true, xsl: true }` - **Description**: Per-extension options. Key = extension (without dot). - `true` — include this extension in the context menu **and** set it as the default editor via `workbench.editorAssociations`. - `false` — include this extension in the context menu but do **not** force default-open behavior. Example `settings.json`: ```jsonc { "openInIntegratedBrowser.autoAssociateAsDefaultByExtension": { "html": true, "htm": true, "svg": true, "xml": false, "xsl": true, "pdf": false } } ``` ## Commands ### `openInIntegratedBrowser.open` Open the selected file in the integrated browser. ## License [MIT](./LICENSE) © NEVSTOP-LAB