Wiggle Teams

Ensures your Microsoft Teams status stays active by simulating random user activity.

Wiggle Teams란 무엇입니까?

Wiggle Teams은(는) Emmanuel Heron-Vortes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ensures your Microsoft Teams status stays active by simulating random user activity."입니다.

확장 프로그램 스크린샷

screenshot

Wiggle Teams 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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\/*"
            ]
        }
    ]
}