Timezone Converter for Google Calendar
This extension helps the user easily convert between timezones while using Google Calendar.
Timezone Converter for Google Calendarとは何ですか?
Timezone Converter for Google Calendarはnik.advani16によって開発されたChromeの拡張機能で、その主な機能は「This extension helps the user easily convert between timezones while using Google Calendar.」です。
拡張機能のスクリーンショット
Timezone Converter for Google Calendar拡張機能のCRXファイルをダウンロード
Timezone Converter for Google Calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension helps the user easily convert between timezones while using Google Calendar.
拡張機能の基本情報
名前 | Timezone Converter for Google Calendar |
ID | llpjnojfbpbeccalkgbjhlohmmkchljp |
公式URL | https://chromewebstore.google.com/detail/timezone-converter-for-go/llpjnojfbpbeccalkgbjhlohmmkchljp |
説明 | This extension helps the user easily convert between timezones while using Google Calendar. |
ファイルサイズ | 12.91 KB |
インストール数 | 212 |
現在のバージョン | 0.2 |
最終更新日 | 2022-08-13 |
公開日 | 2022-08-10 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | nik.advani16 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Timezone Converter for Google Calendar", "version": "0.2", "web_accessible_resources": [ { "resources": [ "icon.png" ], "matches": [ "https:\/\/calendar.google.com\/*" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ] } |