Open in Code
This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code
What is Open in Code?
Open in Code is a Chrome extension developed by Mohamad Jahani, and its main feature is "This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code".
Extension Screenshots
Download Open in Code Extension CRX File
Download Open in 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
This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code. This project is a free software. The source code is available in the following repository under MIT license. https://github.com/mamal72/open-in-code
Extension Basic Information
Name | Open in Code |
ID | pojigilicipchiacceabcigkhkjhdcie |
Official URL | https://chromewebstore.google.com/detail/open-in-code/pojigilicipchiacceabcigkhkjhdcie |
Description | This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code |
File Size | 15.18 KB |
Installation Count | 255 |
Current Version | 0.2.3 |
Last Updated | 2017-05-28 |
Publish Date | 2017-05-27 |
Rating | 2.67/5 Total 3 Ratings |
Developer | Mohamad Jahani |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mamal72/open-in-code |
Help Page URL | https://github.com/mamal72/open-in-code/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open in Code", "version": "0.2.3", "manifest_version": 2, "description": "This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code", "homepage_url": "https:\/\/github.com\/mamal72\/open-in-code", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Open in Code" }, "permissions": [ "tabs", "downloads", "downloads.shelf", "https:\/\/github.com\/*" ] } |