Localise Times

Detects times given with time zone abbreviations, and converts them to your local time.

Localise Times क्या है?

Localise Times QOAL द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects times given with time zone abbreviations, and converts them to your local time."।

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

screenshot
screenshot

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

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

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

                        This addon detects and converts numeric times which include a timezone abbreviations (e.g. UTC, PDT, CEST) and converts them to your local time. Converted times will have a dotted line below them, and you can hover over them to see the original text.
Clicking a converted time will show the original text again.
Examples of time that'll be converted: 7pm PDT, 21:34 cest, 9:00 am UTC + 1
Handles ranges of times too, such as 7-9pm CEST / 10am - 6pm PT.

You can use the menu button to localise times that do not include a time zone abbreviation.
Simply click the icon, and select the time zone used by the times on the page.
There's also a sandbox mode, where you can enter any text you like and convert times within it to a chosen timezone.                    

एक्सटेंशन की मूल जानकारी

नाम Localise Times Localise Times
ID lfapgjogceelfpildippecdikjnljkek
आधिकारिक URL https://chromewebstore.google.com/detail/localise-times/lfapgjogceelfpildippecdikjnljkek
विवरण Detects times given with time zone abbreviations, and converts them to your local time.
फ़ाइल का आकार 62.54 KB
स्थापना संख्या 212
वर्तमान संस्करण 1.40.7
अंतिम अपडेट 2024-02-12
प्रकाशन तिथि 2020-05-14
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर QOAL
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/QOAL/localisetime
सहायता पृष्ठ URL https://github.com/QOAL/localisetime/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.40.7",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "96": "icons\/icon_96.png",
        "192": "icons\/icon_192.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "popup\/tzInfo.js",
                "localisetimes.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon_16.png",
            "19": "icons\/icon_19.png",
            "32": "icons\/icon_32.png",
            "38": "icons\/icon_38.png",
            "48": "icons\/icon_48.png",
            "64": "icons\/icon_64.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "popup\/popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "default_locale": "en"
}