Timezone Buddy

Allow you see everyone's timezone while writing the email

Timezone Buddy là gì?

Timezone Buddy là một tiện ích mở rộng Chrome được phát triển bởi https://timezonebuddy.webflow.io, và tính năng chính của nó là "Allow you see everyone's timezone while writing the email".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Timezone Buddy

Tải xuống các tệp mở rộng Timezone Buddy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Timezone Buddy Timezone Buddy
ID ifhaihpejfjbnliceghdebjgchjahllf
URL Chính Thức https://chrome.google.com/webstore/detail/timezone-buddy/ifhaihpejfjbnliceghdebjgchjahllf
Mô tả Allow you see everyone's timezone while writing the email
Kích Thước Tệp 202 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2021-09-01
Ngày Phát Hành 2021-08-30
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://timezonebuddy.webflow.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://timezonebuddy.webflow.io/
URL Trang Chính Sách Bảo Mật https://www.termsfeed.com/live/6a1917ba-2582-4992-b3ea-9a417737f704
Ngôn Ngữ Được Hỗ Trợ 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
}