Github Open With
Open your Github repository with 3rd party web IDEs
Что такое Github Open With?
Github Open With - это расширение Chrome, разработанное nir, и его основная функция - "Open your Github repository with 3rd party web IDEs".
Снимки экрана расширения
Скачать файл CRX расширения Github Open With
Скачайте файлы расширений Github Open With в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Chrome extension that helps you open Github repositories in a different 3rd party IDES. When navigating to any github repository, you can click on the green code button and see new options: - Open in Github Dev - Open in Github1s - Open in StackBlitz - Open in CodeSandbox
Основная информация о расширении
Название | Github Open With |
ID | dggpihfahccepeedgkckjlcfgnfbjofe |
Официальный URL | https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe |
Описание | Open your Github repository with 3rd party web IDEs |
Размер файла | 11.29 KB |
Количество установок | 194 |
Текущая Версия | 1.2.0 |
Последнее Обновление | 2023-09-19 |
Дата публикации | 2021-06-12 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | nir |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/nirtamir2/github-open-repository-with |
URL страницы помощи | https://github.com/nirtamir2/github-open-repository-with |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Open With", "version": "1.2.0", "description": "Open your Github repository with 3rd party web IDEs", "author": "Nir Tamir", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with", "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*\/*", "https:\/\/*.github.com\/*\/*" ], "all_frames": true, "js": [ "contentScript.js" ] } ] } |