Open with Code
Open source control web pages in vscode.dev
What is Open with Code?
Open with Code is a Chrome extension developed by KobeW, and its main feature is "Open source control web pages in vscode.dev".
Extension Screenshots
Download Open with Code Extension CRX File
Download Open with 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
Will open source control web pages in online visual studio code. Using vscode.dev as VSCode implementation. Works for: * Github * Azure devops
Extension Basic Information
Name | Open with Code |
ID | iodnkoigdgdmeghpjohjcnoomafmonke |
Official URL | https://chromewebstore.google.com/detail/open-with-code/iodnkoigdgdmeghpjohjcnoomafmonke |
Description | Open source control web pages in vscode.dev |
File Size | 12.17 KB |
Installation Count | 51 |
Current Version | 1.0 |
Last Updated | 2022-03-04 |
Publish Date | 2022-03-04 |
Developer | KobeW |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open with Code", "description": "Open source control web pages in vscode.dev", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/dev.azure.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": { "16": "\/images\/OpenWithCode16.png", "32": "\/images\/OpenWithCode32.png", "48": "\/images\/OpenWithCode48.png", "128": "\/images\/OpenWithCode128.png" }, "default_title": "Open repo in vscode.dev tab" }, "icons": { "16": "\/images\/OpenWithCode16.png", "32": "\/images\/OpenWithCode32.png", "48": "\/images\/OpenWithCode48.png", "128": "\/images\/OpenWithCode128.png" } } |