プレゼンタイマー for Google Meet
プレゼンタイマーです
What is プレゼンタイマー for Google Meet?
プレゼンタイマー for Google Meet is a Chrome extension developed by simaenaga, and its main feature is "プレゼンタイマーです".
Extension Screenshots
Download プレゼンタイマー for Google Meet Extension CRX File
Download プレゼンタイマー for Google Meet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Google Meet上でプレゼン用のタイマーをビデオに重ねて配信できます。 基本機能: ★ 自身のビデオ配信に重ねてタイマーを表示します。表示の問題上ミラー表示は解除されます。 ★ 終了時間を設定すれば,カウントダウンモードで終了時間になればゼロになります。 ★ ベルが1回鳴る時間,2回鳴る時間,3回鳴る時間を設定できます。(ベルは自身のPC上で鳴りますのでマイクをオンにしてヘッドホンやイヤホンでは使用せずスピーカーでのご使用をおすすめします) 使い方: ① 拡張機能をインストール後,Google Meetに参加します ② Google Meet の下のバーにあるタイマーを開くボタンをクリックして設定します ③ タイマーを開始してください
Extension Basic Information
Name | プレゼンタイマー for Google Meet |
ID | honfpfbinpcjiacbeglllobafambglpn |
Official URL | https://chromewebstore.google.com/detail/%E3%83%97%E3%83%AC%E3%82%BC%E3%83%B3%E3%82%BF%E3%82%A4%E3%83%9E%E3%83%BC-for-google-meet/honfpfbinpcjiacbeglllobafambglpn |
Description | プレゼンタイマーです |
File Size | 202 KB |
Installation Count | 116 |
Current Version | 1.02 |
Last Updated | 2022-01-08 |
Publish Date | 2021-11-13 |
Developer | simaenaga |
[email protected] | |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "\u30d7\u30ec\u30bc\u30f3\u30bf\u30a4\u30de\u30fc for Google Meet", "manifest_version": 3, "version": "1.02", "description": "\u30d7\u30ec\u30bc\u30f3\u30bf\u30a4\u30de\u30fc\u3067\u3059", "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "32": "icon_48.png" } }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_idle", "js": [ "loader.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ { "resources": [ "cs.js", "1bell.mp3", "2bell.mp3", "3bell.mp3" ], "matches": [ "https:\/\/meet.google.com\/*" ] } ], "host_permissions": [ "https:\/\/meet.google.com\/*" ], "permissions": [ "storage", "activeTab" ] } |