Google Meet Dice Roller
Dice roller extension for RPG players using Google Meet
O que é Google Meet Dice Roller?
Google Meet Dice Roller é uma extensão do Chrome desenvolvida por Rafael Vasconcelos, e sua principal característica é "Dice roller extension for RPG players using Google Meet".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Meet Dice Roller
Baixe arquivos de extensão Google Meet Dice Roller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Google Meet Dice Roller |
ID | lpmdpndjiddedlpjgomjhpgmkaochlkg |
URL Oficial | https://chromewebstore.google.com/detail/google-meet-dice-roller/lpmdpndjiddedlpjgomjhpgmkaochlkg |
Descrição | Dice roller extension for RPG players using Google Meet |
Tamanho do Arquivo | 1.13 MB |
Contagem de Instalações | 4,642 |
Versão Atual | 1.2.1 |
Última Atualização | 2022-04-04 |
Data de Publicação | 2020-07-11 |
Classificação | 4.18/5 Total de 11 Avaliações |
Desenvolvedor | Rafael Vasconcelos |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/rafaelvascc/google-meet-dice-roller |
URL da Página de Ajuda | https://github.com/rafaelvascc/google-meet-dice-roller/issues |
Idiomas Suportados | 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" ] } ] } |