Timezone Buddy

Allow you see everyone's timezone while writing the email

Cos'è Timezone Buddy?

Timezone Buddy è un'estensione di Chrome sviluppata da https://timezonebuddy.webflow.io, e la sua funzione principale è "Allow you see everyone's timezone while writing the email".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Timezone Buddy

Scarica i file di estensione Timezone Buddy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Timezone Buddy Timezone Buddy
ID ifhaihpejfjbnliceghdebjgchjahllf
URL Ufficiale https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf
Descrizione Allow you see everyone's timezone while writing the email
Dimensione del File 202 KB
Conteggio Installazioni 60
Versione Corrente 1.0.2
Ultimo Aggiornamento 2021-09-01
Data di Pubblicazione 2021-08-30
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore https://timezonebuddy.webflow.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://timezonebuddy.webflow.io/
URL della Pagina della Politica sulla Privacy https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704
Lingue Supportate 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
}