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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://yangdx.com และคุณลักษณะหลักของมันคือ "Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Format int to datetime in phpMyAdmin

ดาวน์โหลดไฟล์ส่วนขยาย Format int to datetime in phpMyAdmin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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