DateTime Formatter

Format all the date and time in current page to specified datetime format

DateTime Formatter क्या है?

DateTime Formatter acesmndr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Format all the date and time in current page to specified datetime format"।

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

screenshot
screenshot

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

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

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

                        Convert all datetime in a page to a required format with a click of a button.

Logs tend to have date and time in formats that are hard to read. This extension helps you to convert those unreadable(hard to interpret) dates in your logging sites to the format and timezone that you define.
This is a light weight software that will save countless hours of your debugging time figuring out the exact datetime in your logs in a glance.
Logs are just an example. This extension helps you convert dates in all websites and is not just limited to logging websites.

Why?
• Saves time
• Non obtrusive: Only converts the date in the pages you visit when you click the extension icon
• Light weight
• Date Conversions done are cosmetic change which can be reverted by a simple page refresh.
• Customizable Settings: Has a settings page where you can customize it as per your requirements
• Supports a wide range of datetime formats
• Doesn't allocate memory when not in use
• Vanilla javascript: No thirdparty scripts included
• Free to use                    

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

नाम DateTime Formatter DateTime Formatter
ID ijkgnihgjeomlifgpcodfaegifehahem
आधिकारिक URL https://chromewebstore.google.com/detail/datetime-formatter/ijkgnihgjeomlifgpcodfaegifehahem
विवरण Format all the date and time in current page to specified datetime format
फ़ाइल का आकार 34.41 KB
स्थापना संख्या 100
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2020-11-24
प्रकाशन तिथि 2020-06-02
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर acesmndr
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Acesmndr/datetime-formatter-chrome-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DateTime Formatter",
    "version": "1.2.1",
    "description": "Format all the date and time in current page to specified datetime format",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.4.1\/css\/bootstrap.min.css"
    ],
    "browser_action": {
        "default_title": "DateTime Formatter",
        "default_icon": "assets\/icons\/icon128.png"
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "assets\/background.js"
        ],
        "persistent": false
    }
}