Format int to datetime in phpMyAdmin

Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide.

Format int to datetime in phpMyAdmin क्या है?

Format int to datetime in phpMyAdmin https://yangdx.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide."।

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

screenshot
screenshot

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

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

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

                        1. In phpMyAdmin result page, press "Ctrl + LeftButton" to format, or press "Alt + LeftButton" to hide.

2. You can also turn on automatic format on the extension setting page, it will automatically format every time you enter the page or when the data changes.

3. The judgment conditions for field processing are: 
 ①The field type is int.
 ②The field value starts with "1" and the length is 10 digits.

4. Custom special fields: you can fill in the fields you don't want to convert, or only convert the filled fields.

5. This extension does not deal with time zone issues, that is, it follows the time zone set by the user's computer by default.                    

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

नाम Format int to datetime in phpMyAdmin Format int to datetime in phpMyAdmin
ID gacfegjaaabgladoiiipdlmlhnfmjomj
आधिकारिक URL https://chromewebstore.google.com/detail/format-int-to-datetime-in/gacfegjaaabgladoiiipdlmlhnfmjomj
विवरण Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide.
फ़ाइल का आकार 21.5 KB
स्थापना संख्या 85
वर्तमान संस्करण 1.4.2
अंतिम अपडेट 2021-02-28
प्रकाशन तिथि 2020-05-30
डेवलपर https://yangdx.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gitee.com/yangrz/phpmyadmin-timestamp-field-format
सहायता पृष्ठ URL https://gitee.com/yangrz/phpmyadmin-timestamp-field-format
समर्थित भाषाएँ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "version": "1.4.2",
    "description": "__MSG_app_description__",
    "author": "yangrz",
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "homepage_url": "https:\/\/gitee.com\/yangrz\/phpmyadmin-timestamp-field-format"
}