Story Point Estimations for Google Meet

Quick story point estimation for team members

Что такое Story Point Estimations for Google Meet?

Story Point Estimations for Google Meet - это расширение Chrome, разработанное simon.bradley1993, и его основная функция - "Quick story point estimation for team members".

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

screenshot
screenshot

Скачать файл CRX расширения Story Point Estimations for Google Meet

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

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

                        Allows team members to submit their story point estimations during a Google Meet. This also includes reaction notifications for thumbs up, down and to raise your hand to ask a question.                    

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

Название Story Point Estimations for Google Meet Story Point Estimations for Google Meet
ID ficpbkgajgjgblpohlpmlmoijiablgll
Официальный URL https://chromewebstore.google.com/detail/story-point-estimations-f/ficpbkgajgjgblpohlpmlmoijiablgll
Описание Quick story point estimation for team members
Размер файла 19.17 MB
Количество установок 118
Текущая Версия 1.3.3
Последнее Обновление 2021-05-17
Дата публикации 2020-09-29
Рейтинг 3.67/5 Всего 3 оценок
Разработчик simon.bradley1993
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Story Point Estimations for Google Meet",
    "version": "1.3.3",
    "description": "Quick story point estimation for team members",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/**-**-**"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/*",
        "img\/*",
        "inject.js"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/48.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/meet.google.com\/**-**-**"
        ]
    }
}