Github Open With
Open your Github repository with 3rd party web IDEs
What is Github Open With?
Github Open With is a Chrome extension developed by nir, and its main feature is "Open your Github repository with 3rd party web IDEs".
Extension Screenshots
Download Github Open With Extension CRX File
Download Github Open With 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
Chrome extension that helps you open Github repositories in a different 3rd party IDES. When navigating to any github repository, you can click on the green code button and see new options: - Open in Github Dev - Open in Github1s - Open in StackBlitz - Open in CodeSandbox
Extension Basic Information
Name | Github Open With |
ID | dggpihfahccepeedgkckjlcfgnfbjofe |
Official URL | https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe |
Description | Open your Github repository with 3rd party web IDEs |
File Size | 11.29 KB |
Installation Count | 194 |
Current Version | 1.2.0 |
Last Updated | 2023-09-19 |
Publish Date | 2021-06-12 |
Rating | 5.00/5 Total 1 Ratings |
Developer | nir |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/nirtamir2/github-open-repository-with |
Help Page URL | https://github.com/nirtamir2/github-open-repository-with |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Open With", "version": "1.2.0", "description": "Open your Github repository with 3rd party web IDEs", "author": "Nir Tamir", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with", "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*\/*", "https:\/\/*.github.com\/*\/*" ], "all_frames": true, "js": [ "contentScript.js" ] } ] } |