Wiggle Teams
Ensures your Microsoft Teams status stays active by simulating random user activity.
Wiggle Teamsคืออะไร?
Wiggle Teams เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Emmanuel Heron-Vortes และคุณลักษณะหลักของมันคือ "Ensures your Microsoft Teams status stays active by simulating random user activity."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wiggle Teams
ดาวน์โหลดไฟล์ส่วนขยาย Wiggle Teams ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Wiggle Teams is a Chrome extension designed to help Microsoft Teams users by keeping their status active in the web browser. Here's what it does and why you should consider installing it: 1. Prevents Your Status from Going Idle: If you're a Microsoft Teams user who often finds themselves busy with other tasks, Wiggle Teams will keep your status active by periodically interacting with the Teams webpage in your browser. No more worrying about being marked as away! 2. Simple and Efficient: With Wiggle Teams, maintaining an active presence on Microsoft Teams is effortless. Once installed, it works automatically in the background, without any manual intervention or impact on your browsing experience. 3. Privacy-Focused: This extension respects your privacy. It doesn't collect, store, or share any of your personal information. All functionality is contained within your browser, focused solely on enhancing your productivity with Microsoft Teams. 4. Compatibility Note: Wiggle Teams is designed to work with the Microsoft Teams web client. Ensure that Teams is not open simultaneously in multiple browsers or the desktop app, as it may impact the functionality. Why Install Wiggle Teams? If you're looking to maintain your presence on Microsoft Teams without constant manual interaction, Wiggle Teams is a straightforward and efficient solution. It's free, privacy-focused, and dedicated to improving your Teams experience. Install Wiggle Teams today and discover the convenience of automatic status management on Microsoft Teams!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Wiggle Teams |
ID | kbfceooaaajnllddlnimiddlfdhieldp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wiggle-teams/kbfceooaaajnllddlnimiddlfdhieldp |
คำอธิบาย | Ensures your Microsoft Teams status stays active by simulating random user activity. |
ขนาดไฟล์ | 27.48 KB |
จำนวนการติดตั้ง | 70 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2024-02-16 |
วันที่เผยแพร่ | 2023-08-08 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Emmanuel Heron-Vortes |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wiggle Teams", "version": "1.5", "description": "Ensures your Microsoft Teams status stays active by simulating random user activity.", "permissions": [ "scripting", "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.teams.microsoft.com\/*", "*:\/\/teams.microsoft.com\/*", "*:\/\/*.teams.live.com\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ], "host_permissions": [ "*:\/\/*.teams.microsoft.com\/*", "*:\/\/teams.microsoft.com\/*", "*:\/\/*.teams.live.com\/*" ], "action": { "default_popup": "popup.html", "default_title": "Wiggle Teams!", "default_icon": { "128": "available.png" } }, "web_accessible_resources": [ { "resources": [ "content.js" ], "matches": [ "*:\/\/*.teams.microsoft.com\/*", "*:\/\/teams.microsoft.com\/*", "*:\/\/*.teams.live.com\/*" ] } ] } |