TurboMeet - Turbocharge your Google Meet

Adding productivity features to Google Meet to enhance your meetings.

Что такое TurboMeet - Turbocharge your Google Meet?

TurboMeet - Turbocharge your Google Meet - это расширение Chrome, разработанное ylchaithanya, и его основная функция - "Adding productivity features to Google Meet to enhance your meetings.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения TurboMeet - Turbocharge your Google Meet

Скачайте файлы расширений TurboMeet - Turbocharge your Google Meet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Meet TurboMeet for your Google Meet. ;)

Adding features, automation, and productivity quirks that enhance your meetings over Google Meet to a whole new level. 

TurboMeet is a must-have extension if you want to have productive and efficient meetings over Google Meet. This extension was made to help all the users participating in numerous meetings, classes, and events happening over Google Meet.

New update changes:
1. Bug fixes: Works as intended on Mac, Fixes the flow to mute the media before auto join.
2. Quick launch meeting on clicking the extension.
3. Update Notification

Features added:

1. Set the default Google Account:
When you have multiple Google accounts and you join a meet link to realize that it's not linked to the correct Google account, you have to switch the accounts to join with the right one manually. Instead, set the Google Account Number (https://imgur.com/a/58dSAWS) - usually as 0, 1, 2, to auto-redirect to the correct Google Account.

2. Auto Join:
Bypass the intermediary screen and directly join the meeting.

3. Auto Mute Audio and Video:
No need to manually mute audio and video for every meeting. It's done automatically for you.

4. Push to Talk:
You can unmute and speak by enabling the push to talk feature. We now support Space and Left Shift keys. Just press and hold the key to speak, and when done, release the key. Its that simple. If you need to mute/unmute, simply tap the key.

5. Auto Enable Captions:
Captions are turned on by default when you enter the meeting.

6. Copy URL button:
It's a tedious process to share just the meeting URL with another person. We have a quick solution for that.

7. Quit the meeting using keys:
Just press 'Ctrl' + 'Q' to quit any meeting directly. No more awkwardly searching for the "End Call" button.

8. Quick launch meeting:
Just click on the extension and launch a meeting. The URL is immediately copied into clipboard, so that you can share it with others.

9. Update check:
Whenever the extension updates, the icon changes automatically, suggesting you to update to the new version.

Check the options page to enable or disable these features depending on your requirements.


Privacy Policy:
We don't store your data. Period.  

Acknowledgments:
Sourabh Jain [https://github.com/sourabh10995] for helping me out with the development of this extension.
Mithun Mohan [https://dribbble.com/mthnmhn] for the designs and icons.

If anyone wants to contribute to the project, please do let me know.

Upcoming features:

1. Ability to select the Google account (Including your profile details instead of the numbers)
2. Raise the Hands feature
3. More keys for Push To Talk
4. Record Meeting to the main screen.
5. Jump to Google Meet Tab from anywhere when you click on the extension

Please spread the word!                    

Основная информация о расширении

Название TurboMeet - Turbocharge your Google Meet TurboMeet - Turbocharge your Google Meet
ID mohcccndblgelimaddnfbjbangcmibgp
Официальный URL https://chromewebstore.google.com/detail/turbomeet-turbocharge-you/mohcccndblgelimaddnfbjbangcmibgp
Описание Adding productivity features to Google Meet to enhance your meetings.
Размер файла 95.26 KB
Количество установок 4,236
Текущая Версия 0.8.0
Последнее Обновление 2020-08-18
Дата публикации 2020-06-01
Рейтинг 4.28/5 Всего 18 оценок
Разработчик ylchaithanya
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://knolskape.typeform.com/to/QFuZWF
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TurboMeet - Turbocharge your Google Meet",
    "version": "0.8.0",
    "manifest_version": 2,
    "description": "Adding productivity features to Google Meet to enhance your meetings.",
    "homepage_url": "https:\/\/github.com\/ylchaithanya\/meet-extension",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/options_custom\/lib\/store.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_title": "TurboMeet"
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}