Open GitHub in VS Code
Open GitHub repository in VS Code within browser
What is Open GitHub in VS Code?
Open GitHub in VS Code is a Chrome extension developed by Anton Isaiev, and its main feature is "Open GitHub repository in VS Code within browser".
Extension Screenshots
Download Open GitHub in VS Code Extension CRX File
Download Open GitHub in VS Code extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Just click on "Open in VS Code" button. Based on https://github.com/conwnet/github1s Extension repo: https://github.com/aisaiev/open-github-in-vscode
Extension Basic Information
Name | Open GitHub in VS Code |
ID | pnhnmmcigmleaooedjnodnioapklfngc |
Official URL | https://chromewebstore.google.com/detail/open-github-in-vs-code/pnhnmmcigmleaooedjnodnioapklfngc |
Description | Open GitHub repository in VS Code within browser |
File Size | 30.39 KB |
Installation Count | 1,087 |
Current Version | 1.0 |
Last Updated | 2021-02-13 |
Publish Date | 2021-02-12 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Anton Isaiev |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open GitHub in VS Code", "short_name": "Open GitHub in VS Code", "description": "Open GitHub repository in VS Code within browser", "author": "Anton Isaiev", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "icon.png" } } |