Google Meet Dice Roller
Dice roller extension for RPG players using Google Meet
Google Meet Dice Roller là gì?
Google Meet Dice Roller là một tiện ích mở rộng Chrome được phát triển bởi Rafael Vasconcelos, và tính năng chính của nó là "Dice roller extension for RPG players using Google Meet".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet Dice Roller
Tải xuống các tệp mở rộng Google Meet Dice Roller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet Dice Roller |
ID | lpmdpndjiddedlpjgomjhpgmkaochlkg |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-dice-roller/lpmdpndjiddedlpjgomjhpgmkaochlkg |
Mô tả | Dice roller extension for RPG players using Google Meet |
Kích Thước Tệp | 1.13 MB |
Số Lần Cài Đặt | 4,642 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2022-04-04 |
Ngày Phát Hành | 2020-07-11 |
Đánh Giá | 4.18/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Rafael Vasconcelos |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rafaelvascc/google-meet-dice-roller |
URL Trang Trợ Giúp | https://github.com/rafaelvascc/google-meet-dice-roller/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |