Format int to datetime in phpMyAdmin
Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide.
Qu'est-ce que Format int to datetime in phpMyAdmin ?
Format int to datetime in phpMyAdmin est une extension Chrome développée par https://yangdx.com, et sa fonction principale est "Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Format int to datetime in phpMyAdmin
Téléchargez les fichiers d'extension Format int to datetime in phpMyAdmin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Format int to datetime in phpMyAdmin |
ID | gacfegjaaabgladoiiipdlmlhnfmjomj |
URL Officiel | https://chromewebstore.google.com/detail/format-int-to-datetime-in/gacfegjaaabgladoiiipdlmlhnfmjomj |
Description | Format the int type to datetime in phpMyAdmin result page. "Ctrl + LeftButton" to display, "Alt + LeftButton" to hide. |
Taille du Fichier | 21.5 KB |
Nombre d'Installations | 85 |
Version Actuelle | 1.4.2 |
Dernière Mise à Jour | 2021-02-28 |
Date de Publication | 2020-05-30 |
Développeur | https://yangdx.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gitee.com/yangrz/phpmyadmin-timestamp-field-format |
URL de la Page d'Aide | https://gitee.com/yangrz/phpmyadmin-timestamp-field-format |
Langues Prises en Charge | 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" } |