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란 무엇입니까?

Website Timezone Finder은(는) Aidan Barnes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find the timezone, time of the day and hour from any website on the internet. Ideal for marketers hour and timezone."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Website Timezone Finder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Website Timezone Finder Website Timezone Finder
ID lnakgifpbggcdbdlfaelhjpjnbkmjngd
공식 URL https://chrome.google.com/webstore/detail/lnakgifpbggcdbdlfaelhjpjnbkmjngd
설명 Find the timezone, time of the day and hour from any website on the internet. Ideal for marketers hour and timezone.
파일 크기 115 KB
설치 횟수 2,726
현재 버전 1.1.0
최근 업데이트 2021-03-30
출시 날짜 2020-11-11
평점 4.90/5 총 10 개의 평점
개발자 Aidan Barnes
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
        }
    ]
}