Translate for Slack
Translate Slack message directly in the Slack web app.
Translate for Slack là gì?
Translate for Slack là một tiện ích mở rộng Chrome được phát triển bởi https://limhenry.xyz, và tính năng chính của nó là "Translate Slack message directly in the Slack web app.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Translate for Slack
Tải xuống các tệp mở rộng Translate for Slack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Translate for Slack |
ID | dhadelkabablecjhglpdnjbigkcdfdlm |
URL Chính Thức | https://chromewebstore.google.com/detail/translate-for-slack/dhadelkabablecjhglpdnjbigkcdfdlm |
Mô tả | Translate Slack message directly in the Slack web app. |
Kích Thước Tệp | 106 KB |
Số Lần Cài Đặt | 482 |
Phiên Bản Hiện Tại | 1.0.6 |
Cập Nhật Lần Cuối | 2023-11-08 |
Ngày Phát Hành | 2020-10-30 |
Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://limhenry.xyz |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://policies.limhenry.xyz/slides |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |