TeamsTools
Automating Microsoft Teams in a useful way.
TeamsTools란 무엇입니까?
TeamsTools은(는) dikahdoff에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automating Microsoft Teams in a useful way."입니다.
확장 프로그램 스크린샷
TeamsTools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Microsoft Teams tweaks & tools that help You. Some features: - Auto Disconnect: Do you want to have a break from online classes, but can't because you have to wait until the end of the lesson? This tool helps you automatically disconnect when the rest of the class disconnects. - Auto Join: Do you want to join the meeting as soon as the organizer starts it? This extension searches through the active meetings and joins by itself, if one is available in the set channel. - Always See More: Want to get rid of that annoying "See More" button and always see all messages to their fullest? Sure, we can help you with that. - Better Dark Mode: Don't want to get flashbanged every time you start Teams? We can deal with that too. - Auto Kick: Want to mess around with your friends a little? Have Auto Kick. It'll kick them every time they join the meeting. - Remove annoyances: Removes bloat/annoying features from the platform We often update the extension and add new functionality to it. The best part, this project is 100% Open-Source & Free, so you can check the code and even contribute to it: https://github.com/dikahdoff/TeamsTools If you enjoy my work, please consider donating! I do these projects for free and donations keep me motivated: https://ko-fi.com/dikahdoff
확장 프로그램 기본 정보
이름 | |
ID | lofcnmcfagedndhofljcijmgoilkghkm |
공식 URL | https://chromewebstore.google.com/detail/teamstools/lofcnmcfagedndhofljcijmgoilkghkm |
설명 | Automating Microsoft Teams in a useful way. |
파일 크기 | 302 KB |
설치 횟수 | 1,796 |
현재 버전 | 0.4.1 |
최근 업데이트 | 2022-01-12 |
출시 날짜 | 2021-05-09 |
평점 | 3.63/5 총 8 개의 평점 |
개발자 | dikahdoff |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dikahdoff/TeamsTools |
도움말 페이지 URL | https://github.com/dikahdoff/TeamsTools |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TeamsTools", "version": "0.4.1", "author": [ { "name": "dikahdoff", "email": "[email protected]" } ], "homepage_url": "https:\/\/github.com\/dikahdoff\/TeamsTools", "description": "Automating Microsoft Teams in a useful way.", "icons": { "64": "icon-64.png", "128": "icon-128.png", "1200": "icon-full.png" }, "action": { "default_title": "TeamsTools", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "host_permissions": [ "*:\/\/teams.microsoft.com\/*", "*:\/\/teams.live.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/teams.microsoft.com\/*", "*:\/\/teams.live.com\/*" ], "js": [ "content.js" ] } ] } |