LGTM for Github
This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Что такое LGTM for Github?
LGTM for Github - это расширение Chrome, разработанное https://thetechtime.com, и его основная функция - "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".
Снимки экрана расширения
Скачать файл CRX расширения LGTM for Github
Скачайте файлы расширений LGTM for Github в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Source code: https://github.com/geekrax/lgtm-chrome-extension
Основная информация о расширении
Название | LGTM for Github |
ID | ckjpjogecpcibagiggbejclbihmochpn |
Официальный URL | https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn |
Описание | This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut. |
Размер файла | 32.36 KB |
Количество установок | 19 |
Текущая Версия | 1.1 |
Последнее Обновление | 2017-03-18 |
Дата публикации | 2017-03-17 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://thetechtime.com |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LGTM for Github", "description": "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.", "version": "1.1", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content\/content.js" ] } ], "options_page": "options\/options.html", "permissions": [ "https:\/\/github.com\/", "storage" ] } |