Github-Editors
Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.
Что такое Github-Editors?
Github-Editors - это расширение Chrome, разработанное tclaude94, и его основная функция - "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.".
Снимки экрана расширения
Скачать файл CRX расширения Github-Editors
Скачайте файлы расширений Github-Editors в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension improves your user experience on GitHub by adding several buttons like: - VSCode cloning - Jetbrains' Suite cloning - Open the repo on GitHub1s - Open the repo on CodeSandbox -- Report an issue or submit an improvement You can report an issue or submit an improvement (like adding support for a new editor) on Github Repository can be found here : https://github.com/tclaude94/VSCodeGithub
Основная информация о расширении
Название | Github-Editors |
ID | djdgcpbdkcipjeaiipndkklnfgfmegna |
Официальный URL | https://chromewebstore.google.com/detail/github-editors/djdgcpbdkcipjeaiipndkklnfgfmegna |
Описание | Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer. |
Размер файла | 341 KB |
Количество установок | 66 |
Текущая Версия | 0.2.0 |
Последнее Обновление | 2021-02-15 |
Дата публикации | 2021-02-15 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | tclaude94 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": "img\/logo.png", "default_title": "Github-Editors", "default_popup": ".\/options\/options.html" }, "content_scripts": [ { "js": [ "constants.js", "main.js" ], "matches": [ "https:\/\/github.com\/*" ] } ], "description": "Adds useful buttons on repos' homepage like VSCode and Jetbrains' Suite cloning; GitHub1s and Codesandbox viewer.", "manifest_version": 2, "name": "Github-Editors", "short_name": "GHE", "version": "0.2.0", "web_accessible_resources": [ "img\/*", "img\/icons\/*" ], "icons": { "128": "img\/logo.png", "16": "img\/logo.png", "48": "img\/logo.png" }, "options_ui": { "page": "\/options\/options.html", "open_in_tab": false }, "permissions": [ "storage" ] } |