Timezone Buddy
Allow you see everyone's timezone while writing the email
Vad är Timezone Buddy?
Timezone Buddy är en Chrome-tillägg utvecklad av https://timezonebuddy.webflow.io, och dess huvudfunktion är "Allow you see everyone's timezone while writing the email".
Tilläggsskärmbilder
Ladda ner Timezone Buddy-förlängningens CRX-fil
Ladda ner Timezone Buddy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | ifhaihpejfjbnliceghdebjgchjahllf |
Officiell webbadress | https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf |
Beskrivning | Allow you see everyone's timezone while writing the email |
Filstorlek | 202 KB |
Antal Installationer | 60 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2021-09-01 |
Publiceringsdatum | 2021-08-30 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | https://timezonebuddy.webflow.io |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://timezonebuddy.webflow.io/ |
URL till Sekretesspolicy Sidan | https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704 |
Stödda Språk | 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 } |