GEditor - GitHub Button Editor

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

Что такое GEditor - GitHub Button Editor?

GEditor - GitHub Button Editor - это расширение Chrome, разработанное https://kopi.dev, и его основная функция - "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GEditor - GitHub Button Editor

Скачайте файлы расширений GEditor - GitHub Button Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название GEditor - GitHub Button Editor GEditor - GitHub Button Editor
ID cpfldfidpgollddlhpbgflolgjdlfnob
Официальный URL https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob
Описание GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
Размер файла 152 KB
Количество установок 32
Текущая Версия 0.0.0.2
Последнее Обновление 2021-03-25
Дата публикации 2021-03-25
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://kopi.dev
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://kopi.dev
Поддерживаемые языки 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"
        }
    ]
}