Timezone Buddy
Allow you see everyone's timezone while writing the email
Hvad er Timezone Buddy?
Timezone Buddy er en Chrome-udvidelse udviklet af https://timezonebuddy.webflow.io, og dens hovedfunktion er "Allow you see everyone's timezone while writing the email".
Udvidelsesskærmbilleder
Download Timezone Buddy-udvidelses-CRX-fil
Download Timezone Buddy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | ifhaihpejfjbnliceghdebjgchjahllf |
Officiel URL | https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf |
Beskrivelse | Allow you see everyone's timezone while writing the email |
Filstørrelse | 202 KB |
Antal Installationer | 60 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2021-09-01 |
Udgivelsesdato | 2021-08-30 |
Bedømmelse | 3.50/5 Samlet 2 Bedømmelser |
Udvikler | https://timezonebuddy.webflow.io |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://timezonebuddy.webflow.io/ |
URL til Fortrolighedspolitik Side | https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704 |
Understøttede Sprog | 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 } |