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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Timezone Buddy

Λήψη αρχείων επέκτασης Timezone Buddy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Timezone Buddy Timezone Buddy
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/
URL της Σελίδας Πολιτικής Απορρήτου 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
}