Story Point Estimations for Google Meet

Quick story point estimation for team members

Was ist Story Point Estimations for Google Meet?

Story Point Estimations for Google Meet ist eine Chrome-Erweiterung, die von simon.bradley1993 entwickelt wurde, und ihr Hauptmerkmal ist "Quick story point estimation for team members".

Erweiterungsscreenshots

screenshot
screenshot

Story Point Estimations for Google Meet-Erweiterungs-CRX-Datei herunterladen

Laden Sie Story Point Estimations for Google Meet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Story Point Estimations for Google Meet Story Point Estimations for Google Meet
ID ficpbkgajgjgblpohlpmlmoijiablgll
Offizielle URL https://chromewebstore.google.com/detail/story-point-estimations-f/ficpbkgajgjgblpohlpmlmoijiablgll
Beschreibung Quick story point estimation for team members
Dateigröße 19.17 MB
Installationsanzahl 118
Aktuelle Version 1.3.3
Letztes Update 2021-05-17
Veröffentlichungsdatum 2020-09-29
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler simon.bradley1993
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/**-**-**"
        ]
    }
}