Translate for Slack

Translate Slack message directly in the Slack web app.

Cos'è Translate for Slack?

Translate for Slack è un'estensione di Chrome sviluppata da https://limhenry.xyz, e la sua funzione principale è "Translate Slack message directly in the Slack web app.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Translate for Slack

Scarica i file di estensione Translate for Slack in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Translate for Slack Translate for Slack
ID dhadelkabablecjhglpdnjbigkcdfdlm
URL Ufficiale https://chromewebstore.google.com/detail/translate-for-slack/dhadelkabablecjhglpdnjbigkcdfdlm
Descrizione Translate Slack message directly in the Slack web app.
Dimensione del File 106 KB
Conteggio Installazioni 482
Versione Corrente 1.0.6
Ultimo Aggiornamento 2023-11-08
Data di Pubblicazione 2020-10-30
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore https://limhenry.xyz
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://policies.limhenry.xyz/slides
Lingue Supportate 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"
    }
}