Story Point Estimations for Google Meet
Quick story point estimation for team members
Vad är Story Point Estimations for Google Meet?
Story Point Estimations for Google Meet är en Chrome-tillägg utvecklad av simon.bradley1993, och dess huvudfunktion är "Quick story point estimation for team members".
Tilläggsskärmbilder
Ladda ner Story Point Estimations for Google Meet-förlängningens CRX-fil
Ladda ner Story Point Estimations for Google Meet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Story Point Estimations for Google Meet |
ID | ficpbkgajgjgblpohlpmlmoijiablgll |
Officiell webbadress | https://chromewebstore.google.com/detail/story-point-estimations-f/ficpbkgajgjgblpohlpmlmoijiablgll |
Beskrivning | Quick story point estimation for team members |
Filstorlek | 19.17 MB |
Antal Installationer | 118 |
Aktuell Version | 1.3.3 |
Senast Uppdaterad | 2021-05-17 |
Publiceringsdatum | 2020-09-29 |
Betyg | 3.67/5 Totalt 3 Betyg |
Utvecklare | simon.bradley1993 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/**-**-**" ] } } |