Open GitHub in VS Code
Open GitHub repository in VS Code within browser
Что такое Open GitHub in VS Code?
Open GitHub in VS Code - это расширение Chrome, разработанное Anton Isaiev, и его основная функция - "Open GitHub repository in VS Code within browser".
Снимки экрана расширения
Скачать файл CRX расширения Open GitHub in VS Code
Скачайте файлы расширений Open GitHub in VS Code в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Just click on "Open in VS Code" button. Based on https://github.com/conwnet/github1s Extension repo: https://github.com/aisaiev/open-github-in-vscode
Основная информация о расширении
Название | Open GitHub in VS Code |
ID | pnhnmmcigmleaooedjnodnioapklfngc |
Официальный URL | https://chromewebstore.google.com/detail/open-github-in-vs-code/pnhnmmcigmleaooedjnodnioapklfngc |
Описание | Open GitHub repository in VS Code within browser |
Размер файла | 30.39 KB |
Количество установок | 1,087 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-02-13 |
Дата публикации | 2021-02-12 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Anton Isaiev |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open GitHub in VS Code", "short_name": "Open GitHub in VS Code", "description": "Open GitHub repository in VS Code within browser", "author": "Anton Isaiev", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "icon.png" } } |