GEditor - GitHub Button Editor
GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
Hvad er GEditor - GitHub Button Editor?
GEditor - GitHub Button Editor er en Chrome-udvidelse udviklet af https://kopi.dev, og dens hovedfunktion er "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.".
Udvidelsesskærmbilleder
Download GEditor - GitHub Button Editor-udvidelses-CRX-fil
Download GEditor - GitHub Button Editor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cpfldfidpgollddlhpbgflolgjdlfnob |
| Officiel URL | https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob |
| Beskrivelse | GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms. |
| Filstørrelse | 152 KB |
| Antal Installationer | 32 |
| Nuværende Version | 0.0.0.2 |
| Senest Opdateret | 2021-03-25 |
| Udgivelsesdato | 2021-03-25 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | https://kopi.dev |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | https://kopi.dev |
| Understøttede Sprog | 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"
}
]
} | |