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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |