Google Meet Dice Roller
Dice roller extension for RPG players using Google Meet
Google Meet Dice Rollerคืออะไร?
Google Meet Dice Roller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rafael Vasconcelos และคุณลักษณะหลักของมันคือ "Dice roller extension for RPG players using Google Meet"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Dice Roller
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |