GEditor - GitHub Button Editor

GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.

Vad är GEditor - GitHub Button Editor?

GEditor - GitHub Button Editor är en Chrome-tillägg utvecklad av https://kopi.dev, och dess huvudfunktion är "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.".

Tilläggsskärmbilder

screenshot

Ladda ner GEditor - GitHub Button Editor-förlängningens CRX-fil

Ladda ner GEditor - GitHub Button Editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn GEditor - GitHub Button Editor GEditor - GitHub Button Editor
ID cpfldfidpgollddlhpbgflolgjdlfnob
Officiell webbadress https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob
Beskrivning GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
Filstorlek 152 KB
Antal Installationer 32
Aktuell Version 0.0.0.2
Senast Uppdaterad 2021-03-25
Publiceringsdatum 2021-03-25
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://kopi.dev
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://kopi.dev
Stödda Språk 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"
        }
    ]
}