EZTM
Chrome extension that helps you to do LGTM with fancy gifs.
Что такое EZTM?
EZTM - это расширение Chrome, разработанное kakudenbuzou, и его основная функция - "Chrome extension that helps you to do LGTM with fancy gifs.".
Снимки экрана расширения
Скачать файл CRX расширения EZTM
Скачайте файлы расширений EZTM в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension helps you do LGTM with fancy gifs on GitHub.
# How to use
1. Focus on text area.
2. Right click to show context menu.
3. Click "Insert LGTM gif".
4. That's it!
"shift + cmd + v" is a shortcut command to insert LGTM gif.
You can change the command if you want. (chrome://extensions/shortcuts) Основная информация о расширении
| Название | |
| ID | pilidjngjpaijlblpfdncckldgecngak |
| Официальный URL | https://chromewebstore.google.com/detail/eztm/pilidjngjpaijlblpfdncckldgecngak |
| Описание | Chrome extension that helps you to do LGTM with fancy gifs. |
| Размер файла | 7.89 KB |
| Количество установок | 32 |
| Текущая Версия | 0.1.0 |
| Последнее Обновление | 2023-01-14 |
| Дата публикации | 2022-11-23 |
| Разработчик | kakudenbuzou |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/kakudenbuzo/eztm |
| URL страницы помощи | https://github.com/kakudenbuzo/eztm |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "EZTM",
"description": "Chrome extension that helps you to do LGTM with fancy gifs.",
"version": "0.1.0",
"icons": {
"16": "image\/icon16.png",
"48": "image\/icon48.png",
"128": "image\/icon128.png"
},
"permissions": [
"contextMenus"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"run_at": "document_idle",
"all_frames": true,
"js": [
"js\/contentScript.js"
]
}
],
"commands": {
"closeSidebar": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "Insert LGTM gif"
}
}
} | |