Timezone Buddy
Allow you see everyone's timezone while writing the email
Was ist Timezone Buddy?
Timezone Buddy ist eine Chrome-Erweiterung, die von https://timezonebuddy.webflow.io entwickelt wurde, und ihr Hauptmerkmal ist "Allow you see everyone's timezone while writing the email".
Erweiterungsscreenshots
Timezone Buddy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Timezone Buddy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | ifhaihpejfjbnliceghdebjgchjahllf |
Offizielle URL | https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf |
Beschreibung | Allow you see everyone's timezone while writing the email |
Dateigröße | 202 KB |
Installationsanzahl | 60 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2021-09-01 |
Veröffentlichungsdatum | 2021-08-30 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | https://timezonebuddy.webflow.io |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://timezonebuddy.webflow.io/ |
URL der Datenschutzrichtlinien-Seite | https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704 |
Unterstützte Sprachen | 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 } |