Timezone Converter for Google Calendar
This extension helps the user easily convert between timezones while using Google Calendar.
What is Timezone Converter for Google Calendar?
Timezone Converter for Google Calendar is a Chrome extension developed by nik.advani16, and its main feature is "This extension helps the user easily convert between timezones while using Google Calendar.".
Extension Screenshots
Download Timezone Converter for Google Calendar Extension CRX File
Download Timezone Converter for Google Calendar 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
This extension helps the user easily convert between timezones while using Google Calendar.
Extension Basic Information
Name | Timezone Converter for Google Calendar |
ID | llpjnojfbpbeccalkgbjhlohmmkchljp |
Official URL | https://chromewebstore.google.com/detail/timezone-converter-for-go/llpjnojfbpbeccalkgbjhlohmmkchljp |
Description | This extension helps the user easily convert between timezones while using Google Calendar. |
File Size | 12.91 KB |
Installation Count | 212 |
Current Version | 0.2 |
Last Updated | 2022-08-13 |
Publish Date | 2022-08-10 |
Rating | 5.00/5 Total 3 Ratings |
Developer | nik.advani16 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |