Slack Easy Delete
Use Control+Shift+Space delete the message under the cursor.
Что такое Slack Easy Delete?
Slack Easy Delete - это расширение Chrome, разработанное Gunar C. Gessner, и его основная функция - "Use Control+Shift+Space delete the message under the cursor.".
Снимки экрана расширения
Скачать файл CRX расширения Slack Easy Delete
Скачайте файлы расширений Slack Easy Delete в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
In Slack, use Control+Shift+Space to delete the message under the cursor.
Основная информация о расширении
Название | Slack Easy Delete |
ID | aofnbjmngnhhacenlhfdodidiebiicob |
Официальный URL | https://chromewebstore.google.com/detail/slack-easy-delete/aofnbjmngnhhacenlhfdodidiebiicob |
Описание | Use Control+Shift+Space delete the message under the cursor. |
Размер файла | 9.67 KB |
Количество установок | 214 |
Текущая Версия | 5.0.3 |
Последнее Обновление | 2018-07-25 |
Дата публикации | 2018-07-25 |
Рейтинг | 1.93/5 Всего 15 оценок |
Разработчик | Gunar C. Gessner |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gunar/slack-delete |
URL страницы помощи | https://github.com/gunar/slack-delete/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "*" ], "js": [ "inject.js" ], "matches": [ "https:\/\/*.slack.com\/messages\/*", "http:\/\/*.slack.com\/messages\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ "index.js", "promise-queue.js" ], "converted_from_user_script": true, "description": "Use Control+Shift+Space delete the message under the cursor.", "name": "Slack Easy Delete", "version": "5.0.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |