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."입니다.
확장 프로그램 스크린샷
Translate for Slack 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | dhadelkabablecjhglpdnjbigkcdfdlm |
공식 URL | 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" } } |