Translate for Slack

Translate Slack message directly in the Slack web app.

What is Translate for Slack?

Translate for Slack is a Chrome extension developed by https://limhenry.xyz, and its main feature is "Translate Slack message directly in the Slack web app.".

Extension Screenshots

screenshot
screenshot

Download Translate for Slack Extension CRX File

Download Translate for Slack extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Translate for Slack Translate for Slack
ID dhadelkabablecjhglpdnjbigkcdfdlm
Official URL https://chromewebstore.google.com/detail/translate-for-slack/dhadelkabablecjhglpdnjbigkcdfdlm
Description Translate Slack message directly in the Slack web app.
File Size 106 KB
Installation Count 482
Current Version 1.0.6
Last Updated 2023-11-08
Publish Date 2020-10-30
Rating 4.67/5 Total 3 Ratings
Developer https://limhenry.xyz
Email [email protected]
Payment Type free
Privacy Policy Page URL https://policies.limhenry.xyz/slides
Supported Languages 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"
    }
}