Format int to datetime in phpMyAdmin

Format int to datetime in phpMyAdmin

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

Additional files are visible only to premium users

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