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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chromex.dev และคุณลักษณะหลักของมันคือ "Automatically detect the times from text as you browse the web and convert them to your local timezone."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Time Zone Converter

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}