Google Meet Dice Roller
Dice roller extension for RPG players using Google Meet
什么是Google Meet Dice Roller?
Google Meet Dice Roller是由Rafael Vasconcelos开发的Chrome扩展程序,该扩展的主要功能是“Dice roller extension for RPG players using Google Meet”。
扩展截图
下载Google Meet Dice Roller扩展crx文件
下载Google Meet Dice Roller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Dice roller extension for RPG players using Google Meet. Source code, change log, how to use and issue tracker in the project's Github page: https://github.com/rafaelvascc/google-meet-dice-roller IMPORTANT: The "Browsing History Access" permission is no longer necessary! On the previous version, the "Roll Dice!" button in the user interface used to use the chrome tabs api. By simply requesting access to use this api, the extension was marked as "requiring browser history". This api isn't necessary anymore, so the extension will no longer require access to browsing history.
扩展基本信息
名称 | Google Meet Dice Roller |
ID | lpmdpndjiddedlpjgomjhpgmkaochlkg |
官方URL | https://chromewebstore.google.com/detail/google-meet-dice-roller/lpmdpndjiddedlpjgomjhpgmkaochlkg |
简介 | Dice roller extension for RPG players using Google Meet |
文件大小 | 1.13 MB |
安装次数 | 4,642 |
当前版本 | 1.2.1 |
更新时间 | 2022-04-04 |
上架时间 | 2020-07-11 |
评分 | 4.18/5 共11次评分 |
开发者 | Rafael Vasconcelos |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/rafaelvascc/google-meet-dice-roller |
帮助页面URL | https://github.com/rafaelvascc/google-meet-dice-roller/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Meet Dice Roller", "version": "1.2.1", "description": "Dice roller extension for RPG players using Google Meet", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icons\/64.png", "32": "icons\/64.png", "48": "icons\/64.png", "128": "icons\/128.png" }, "web_accessible_resources": [ { "resources": [ "ui\/*.png", "icons\/*.png", "assets\/*.png" ], "matches": [ "*:\/\/meet.google.com\/*" ] } ], "action": { "default_icon": "icons\/128.png" }, "host_permissions": [ "*:\/\/meet.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content-scripts\/index.js", "ui\/index.js" ] } ] } |