Auto Time Zone Converter

Automatically detect the times from text as you browse the web and convert them to your local timezone.

什麼是Auto Time Zone Converter?

Auto Time Zone Converter是由https://chromex.dev開發的Chrome擴展程式,該擴展的主要功能是“Automatically detect the times from text as you browse the web and convert them to your local timezone.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Auto Time Zone Converter擴展crx文件

下載Auto Time Zone Converter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        1. Automatically detects time in the websites you visit and converts it into your local or a custom destination time.
2. Works perfectly fine on the web, Gmail, Online Outlook, etc.
3. Detects different timezones with the same abbreviation
4. Accounts for daylight saving
5. Manage the extension with the on and off buttons
6. Add up to 5 different destination time zones from the setting page
7. Personalize the label of each destination time zone                    

擴展基本資訊

名稱 Auto Time Zone Converter Auto Time Zone Converter
ID kfmhaonghmgncmpeggdeiigffbjecohi
官方網址 https://chromewebstore.google.com/detail/auto-time-zone-converter/kfmhaonghmgncmpeggdeiigffbjecohi
簡介 Automatically detect the times from text as you browse the web and convert them to your local timezone.
檔案大小 263 KB
安裝次數 832
目前版本 4.0.1
更新時間 2023-09-12
上架時間 2021-08-03
評分 4.72/5 共 18 次評分
開發者 https://chromex.dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://chromex.dev
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Time Zone Converter",
    "version": "4.0.1",
    "description": "Automatically detect the times from text as you browse the web and convert them to your local timezone.",
    "manifest_version": 3,
    "author": "Haniyeh Asemi member of MarkItAsDone",
    "icons": {
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "html\/popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/find-and-replace-text.js",
                "js\/functions.js",
                "js\/search-time.js",
                "js\/toggleIcon.js",
                "js\/timezones.js"
            ],
            "css": [
                "css\/search-time.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/fonts\/Inter\/*.woff"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}