Translate for Slack
Translate Slack message directly in the Slack web app.
Что такое Translate for Slack?
Translate for Slack - это расширение Chrome, разработанное https://limhenry.xyz, и его основная функция - "Translate Slack message directly in the Slack web app.".
Снимки экрана расширения
Скачать файл CRX расширения Translate for Slack
Скачайте файлы расширений Translate for Slack в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Translate for Slack is a Chrome Extension that can translate Slack message directly in the Slack web app.
✨ FEATURES
✔️ Translate message directly in the Slack web app
✔️ Works with 100+ languages (Powered by Google Translate)
✔️ Customizable Translate Button Text
🎁 DONATE
PayPal: https://bit.ly/slides-donate
👨🏻💻️ FIND US ON
Twitter: https://twitter.com/henrylim96
❤️ CONTRIBUTORS
- github.com/tomatnasdaq Основная информация о расширении
| Название | |
| ID | dhadelkabablecjhglpdnjbigkcdfdlm |
| Официальный URL | https://chromewebstore.google.com/detail/translate-for-slack/dhadelkabablecjhglpdnjbigkcdfdlm |
| Описание | Translate Slack message directly in the Slack web app. |
| Размер файла | 106 KB |
| Количество установок | 482 |
| Текущая Версия | 1.0.6 |
| Последнее Обновление | 2023-11-08 |
| Дата публикации | 2020-10-30 |
| Рейтинг | 4.67/5 Всего 3 оценок |
| Разработчик | https://limhenry.xyz |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://policies.limhenry.xyz/slides |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Translate for Slack",
"short_name": "Translate for Slack",
"description": "Translate Slack message directly in the Slack web app.",
"version": "1.0.6",
"offline_enabled": false,
"content_scripts": [
{
"matches": [
"https:\/\/app.slack.com\/client\/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"host_permissions": [
"https:\/\/app.slack.com\/client\/*"
],
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"options_page": "options.html",
"permissions": [
"storage"
],
"action": {
"default_title": "Options",
"default_icon": {
"128": "icons\/logo.png"
}
},
"background": {
"service_worker": "background.js"
}
} | |