Codeanywhere IDE
Helper for launching Codeanywhere.
Что такое Codeanywhere IDE?
Codeanywhere IDE - это расширение Chrome, разработанное Matt Rudge, и его основная функция - "Helper for launching Codeanywhere.".
Снимки экрана расширения
Скачать файл CRX расширения Codeanywhere IDE
Скачайте файлы расширений Codeanywhere IDE в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Unofficial helper extension for launching a Codeanywhere workspace from a GitHub repository
Основная информация о расширении
Название | Codeanywhere IDE |
ID | khibngadbedomfojmmblgdphangeninf |
Официальный URL | https://chromewebstore.google.com/detail/codeanywhere-ide/khibngadbedomfojmmblgdphangeninf |
Описание | Helper for launching Codeanywhere. |
Размер файла | 20.51 KB |
Количество установок | 354 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2023-03-31 |
Дата публикации | 2023-03-31 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Matt Rudge |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://lechien73.githob.io/cae |
URL страницы помощи | https://lechien73.githob.io/cae |
URL страницы политики конфиденциальности | https://mattrudge.net/privacy.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeanywhere IDE", "description": "Helper for launching Codeanywhere.", "version": "1.0.0", "action": { "default_title": "Codeanywhere IDE Helper" }, "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*", "*:\/\/*.github.com\/*\/*" ], "js": [ "js\/cae_content.js" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon48.png", "128": "images\/icon128.png" } } |