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是由simon.bradley1993开发的Chrome扩展程序,该扩展的主要功能是“Quick story point estimation for team members”。
扩展截图
下载Story Point Estimations for Google Meet扩展crx文件
下载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 |
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\/**-**-**" ] } } |