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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة سياسة الخصوصية | 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 } |