Timezone Buddy
Allow you see everyone's timezone while writing the email
Что такое Timezone Buddy?
Timezone Buddy - это расширение Chrome, разработанное https://timezonebuddy.webflow.io, и его основная функция - "Allow you see everyone's timezone while writing the email".
Снимки экрана расширения
Скачать файл CRX расширения Timezone Buddy
Скачайте файлы расширений Timezone Buddy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Often we waste too much time on finding the right time 🕐 that works everyone around the world. This extension allows you to see the timezone of all recipients while writing email directly
Основная информация о расширении
Название | |
ID | ifhaihpejfjbnliceghdebjgchjahllf |
Официальный URL | https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf |
Описание | Allow you see everyone's timezone while writing the email |
Размер файла | 202 KB |
Количество установок | 60 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2021-09-01 |
Дата публикации | 2021-08-30 |
Рейтинг | 3.50/5 Всего 2 оценок |
Разработчик | https://timezonebuddy.webflow.io |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://timezonebuddy.webflow.io/ |
URL страницы политики конфиденциальности | https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704 |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Timezone Buddy", "description": "Allow you see everyone's timezone while writing the email", "version": "1.0.2", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*", "https:\/\/maps.googleapis.com\/maps\/api\/*" ], "js": [ "inboxsdk.js", "underscore.js", "content.js", "jquery.js", "location.js", "jquery-ui.js", "tracking.js" ], "css": [ "styles.css", "jquery-ui.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/*.google.com\/", "https:\/\/maps.googleapis.com\/*", "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/", "geolocation", "identity", "identity.email" ], "web_accessible_resources": [ "timezonerow.html", "index.html" ], "manifest_version": 2 } |