TeamsTools

Automating Microsoft Teams in a useful way.

TeamsToolsคืออะไร?

TeamsTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dikahdoff และคุณลักษณะหลักของมันคือ "Automating Microsoft Teams in a useful way."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TeamsTools

ดาวน์โหลดไฟล์ส่วนขยาย TeamsTools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TeamsTools TeamsTools
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"
            ]
        }
    ]
}