github-code-viewer

A Chromium extension to view GitHub code faster and easier.

Что такое github-code-viewer?

github-code-viewer - это расширение Chrome, разработанное xcv58, и его основная функция - "A Chromium extension to view GitHub code faster and easier.".

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

screenshot

Скачать файл CRX расширения github-code-viewer

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

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

                        View GitHub code in VSCode.                    

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

Название github-code-viewer github-code-viewer
ID ecddapgifccgblebfibdgkagfbdagjfn
Официальный URL https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn
Описание A Chromium extension to view GitHub code faster and easier.
Размер файла 19.39 KB
Количество установок 609
Текущая Версия 0.0.1
Последнее Обновление 2021-02-10
Дата публикации 2021-02-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик xcv58
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/febaoshan/edge-extensions-github-code-viewer
URL страницы помощи https://github.com/febaoshan/edge-extensions-github-code-viewer/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github-code-viewer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "A Chromium extension to view GitHub code faster and easier.",
    "icons": {
        "16": "icons\/logo16x16.png",
        "32": "icons\/logo32x32.png",
        "48": "icons\/logo48x48.png",
        "128": "icons\/logo128x128.png"
    },
    "page_action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/background.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "src\/background.js"
    ],
    "homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    }
}