Mute Perfect

By Nithin S

Hvad er Mute Perfect?

Mute Perfect er en Chrome-udvidelse udviklet af https://nithins.me, og dens hovedfunktion er "By Nithin S".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Mute Perfect-udvidelses-CRX-fil

Download Mute Perfect-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Ensure that you are 100% on mute during your meetings or online classes

This simple and lightweight extension removes your camera and mic so that you can never go unmute accidentally. 
This extension is entirely focused on protecting user privacy during calls/meetings.

You can click on the extension to enable your mic or camera anytime you need. This will bring back your mic and camera options immediately.

This is a beta version under development and currently only supports Google Meet, Microsoft Teams, and Zoom. Will add additional support to cover all meeting platforms in future releases.

Contribute to Mute Perfect on https://github.com/NithinSGowda/Mute-Perfect


[ Double click on bottom right confirmation ribbons to remove them incase they cover your screen ]                    

Grundlæggende oplysninger om udvidelsen

Navn Mute Perfect Mute Perfect
ID pboahmednhooeegmdeinbbhnhhiopldh
Officiel URL https://chromewebstore.google.com/detail/mute-perfect/pboahmednhooeegmdeinbbhnhhiopldh
Beskrivelse By Nithin S
Filstørrelse 82.6 KB
Antal Installationer 215
Nuværende Version 0.1.0
Senest Opdateret 2021-03-19
Udgivelsesdato 2021-03-01
Bedømmelse 3.86/5 Samlet 7 Bedømmelser
Udvikler https://nithins.me
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/NithinSGowda/Mute-Perfect
Hjælpeside-URL https://github.com/NithinSGowda/Mute-Perfect
URL til Fortrolighedspolitik Side https://nithins.me/nbot/privacyPolicy.html
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Perfect",
    "version": "0.1.0",
    "description": "By Nithin S",
    "icons": {
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Mute Perfect",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/*",
                "https:\/\/meet.google.com\/*",
                "https:\/\/*.zoom.us\/*"
            ],
            "js": [
                "js\/contentscriptMute.js"
            ],
            "css": [
                "css\/contentStyle.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}