Slim Chatwork
Slim Chatwork is a 3rd party extension that adds a few minimal features to Chatwork.
Slim Chatwork란 무엇입니까?
Slim Chatwork은(는) https://cofus.work에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Slim Chatwork is a 3rd party extension that adds a few minimal features to Chatwork."입니다.
확장 프로그램 스크린샷
Slim Chatwork 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can add minimalistic features to Chatwork by installing it. List of minimalist features that can be used - Adjusting the size of the room list - Font change function - Template registration function (enables you to register a fixed-format message, etc.) - syntax highlighting - Hide Avatar - Extend the right column and so on Get a better handle on Chatwork with Slim Chatwork! Slim Chatwork is a third party Chrome extension that is not affiliated with Chatwork, Inc. Slim Chatwork is a third party Chrome extension that is not related to Chatwork Corporation.
확장 프로그램 기본 정보
이름 | Slim Chatwork |
ID | hckmjlnhaeikfnmmfjniechjanhhfnjh |
공식 URL | https://chromewebstore.google.com/detail/slim-chatwork/hckmjlnhaeikfnmmfjniechjanhhfnjh |
설명 | Slim Chatwork is a 3rd party extension that adds a few minimal features to Chatwork. |
파일 크기 | 1.86 MB |
설치 횟수 | 10,000 |
현재 버전 | 0.10.12 |
최근 업데이트 | 2024-02-17 |
출시 날짜 | 2019-10-23 |
평점 | 4.89/5 총 18 개의 평점 |
개발자 | https://cofus.work |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cofus.work/chrome-extensions/slim-chatwork/ |
도움말 페이지 URL | https://cofus.work/chrome-extensions/slim-chatwork/#qa |
개인정보 보호 정책 페이지 URL | https://cofus.work/privacy |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "HigaTsubasa", "description": "__MSG_ext_desc__", "homepage_url": "https:\/\/slimchatwork.cofus.work\/", "manifest_version": 3, "name": "Slim Chatwork", "short_name": "Slim Chatwork", "version": "0.10.12", "default_locale": "en", "action": { "default_icon": { "16": "images\/icons\/icon32.png", "24": "images\/icons\/icon48.png", "32": "images\/icons\/icon64.png" }, "default_title": "Slim Chatwork", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "contentScripts.js" ], "matches": [ "*:\/\/www.chatwork.com\/", "*:\/\/kcw.kddi.ne.jp\/" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "textlint-worker.js" ], "matches": [ "*:\/\/www.chatwork.com\/*", "*:\/\/kcw.kddi.ne.jp\/*" ] } ], "icons": { "19": "images\/icons\/icon38.png", "38": "images\/icons\/icon76.png", "64": "images\/icons\/icon128.png", "128": "images\/icons\/icon256.png" }, "host_permissions": [ "*:\/\/www.chatwork.com\/", "*:\/\/kcw.kddi.ne.jp\/" ], "permissions": [ "background", "storage", "tabs" ] } |