Translate for Slack

Translate Slack message directly in the Slack web app.

什麼是Translate for Slack?

Translate for Slack是由https://limhenry.xyz開發的Chrome擴展程式,該擴展的主要功能是“Translate Slack message directly in the Slack web app.”。

擴展截圖

screenshot
screenshot

下載Translate for Slack擴展crx文件

下載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                    

擴展基本資訊

名稱 Translate for Slack Translate for Slack
ID dhadelkabablecjhglpdnjbigkcdfdlm
官方網址 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"
    }
}