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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically detect the times from text as you browse the web and convert them to your local timezone."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto Time Zone Converter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}