Website Timezone Finder

Find the timezone, time of the day and hour from any website on the internet. Ideal for marketers hour and timezone.

Website Timezone Finder là gì?

Website Timezone Finder là một tiện ích mở rộng Chrome được phát triển bởi Aidan Barnes, và tính năng chính của nó là "Find the timezone, time of the day and hour from any website on the internet. Ideal for marketers hour and timezone.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Website Timezone Finder 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

                        It can be a challenge to work with clients and customers in different time zones. Often sending your emails at the “wrong” time can thwart the most well-crafted marketing campaigns. 

With the Website Timezone Finder extension, you can accurately determine the timezone of a website and its active hours. This can help you optimize your email sending times to make sure messages reach global clients and subscribers when they are most likely to check their inboxes.

Businesses and email marketers can optimize their operational timings for different time zones using Website Timezone Finder extension and successfully follow up or send proposals to any website. 

Impressively, this extension can help you reduce your waiting time by helping you contact others at the time they are most likely to be active.

How Website Timezone Finder Works?
This useful shows you the current time according to the timezone of the website.                    

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

Tên Website Timezone Finder Website Timezone Finder
ID lnakgifpbggcdbdlfaelhjpjnbkmjngd
URL Chính Thức https://chrome.google.com/webstore/detail/lnakgifpbggcdbdlfaelhjpjnbkmjngd
Mô tả Find the timezone, time of the day and hour from any website on the internet. Ideal for marketers hour and timezone.
Kích Thước Tệp 115 KB
Số Lần Cài Đặt 2,726
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2021-03-30
Ngày Phát Hành 2020-11-11
Đánh Giá 4.90/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Aidan Barnes
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website Timezone Finder",
    "description": "Find the timezone, time of the day and hour from any website on the internet. Ideal for marketers hour and timezone.",
    "version": "1.1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Popup",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/*",
        "activeTab",
        "storage",
        "tabs",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-scripts\/idle.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-scripts\/start.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}