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 |
Eメール | [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" ] } ] } |