プレゼンタイマー for Google Meet
プレゼンタイマーです
Wat is プレゼンタイマー for Google Meet?
プレゼンタイマー for Google Meet is een Chrome-extensie ontwikkeld door simaenaga, en de belangrijkste functie is "プレゼンタイマーです".
Extensie Screenshots
Download het CRX-bestand van de extensie プレゼンタイマー for Google Meet
Download プレゼンタイマー for Google Meet-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Google Meet上でプレゼン用のタイマーをビデオに重ねて配信できます。
基本機能:
★ 自身のビデオ配信に重ねてタイマーを表示します。表示の問題上ミラー表示は解除されます。
★ 終了時間を設定すれば,カウントダウンモードで終了時間になればゼロになります。
★ ベルが1回鳴る時間,2回鳴る時間,3回鳴る時間を設定できます。(ベルは自身のPC上で鳴りますのでマイクをオンにしてヘッドホンやイヤホンでは使用せずスピーカーでのご使用をおすすめします)
使い方:
① 拡張機能をインストール後,Google Meetに参加します
② Google Meet の下のバーにあるタイマーを開くボタンをクリックして設定します
③ タイマーを開始してください Basisinformatie over de Extensie
| Naam | |
| ID | honfpfbinpcjiacbeglllobafambglpn |
| Officiële 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 |
| Beschrijving | プレゼンタイマーです |
| Bestandsgrootte | 202 KB |
| Aantal Installaties | 116 |
| Huidige Versie | 1.02 |
| Laatst Bijgewerkt | 2022-01-08 |
| Publicatiedatum | 2021-11-13 |
| Ontwikkelaar | simaenaga |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |