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によって開発されたChromeの拡張機能で、その主な機能は「Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Format int to datetime in phpMyAdmin拡張機能のCRXファイルをダウンロード

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
Eメール [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"
}