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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}