Translate for Slack
Translate Slack message directly in the Slack web app.
Qu'est-ce que Translate for Slack ?
Translate for Slack est une extension Chrome développée par https://limhenry.xyz, et sa fonction principale est "Translate Slack message directly in the Slack web app.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Translate for Slack
Téléchargez les fichiers d'extension Translate for Slack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Translate for Slack |
ID | dhadelkabablecjhglpdnjbigkcdfdlm |
URL Officiel | https://chromewebstore.google.com/detail/translate-for-slack/dhadelkabablecjhglpdnjbigkcdfdlm |
Description | Translate Slack message directly in the Slack web app. |
Taille du Fichier | 106 KB |
Nombre d'Installations | 482 |
Version Actuelle | 1.0.6 |
Dernière Mise à Jour | 2023-11-08 |
Date de Publication | 2020-10-30 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | https://limhenry.xyz |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://policies.limhenry.xyz/slides |
Langues Prises en Charge | 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" } } |