GEditor - GitHub Button Editor
GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
What is GEditor - GitHub Button Editor?
GEditor - GitHub Button Editor is a Chrome extension developed by https://kopi.dev, and its main feature is "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.".
Extension Screenshots
Download GEditor - GitHub Button Editor Extension CRX File
Download GEditor - GitHub Button Editor 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
I always find it inconvenient to read code on GitHub, and even with things like Octotree, I always find it too much trouble to cut around and too slow to clone down some of the libraries, so I came up with the idea of having an online VS Code tool to read GitHub code Extension Basic Information
| Name | |
| ID | cpfldfidpgollddlhpbgflolgjdlfnob |
| Official URL | https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob |
| Description | GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms. |
| File Size | 152 KB |
| Installation Count | 32 |
| Current Version | 0.0.0.2 |
| Last Updated | 2021-03-25 |
| Publish Date | 2021-03-25 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | https://kopi.dev |
| [email protected] | |
| Payment Type | free |
| Help Page URL | https://kopi.dev |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GEditor - GitHub Button Editor",
"description": "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.",
"version": "0.0.0.2",
"browser_action": {
"default_title": "GEditor"
},
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
},
"manifest_version": 2,
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*:\/\/github.com\/*"
],
"run_at": "document_end"
}
]
} | |