phpMyAdmin - Markdown Table Export
Export query result from phpMyAdmin as markdown table
什麼是phpMyAdmin - Markdown Table Export?
phpMyAdmin - Markdown Table Export是由http://www.deray.org開發的Chrome擴展程式,該擴展的主要功能是“Export query result from phpMyAdmin as markdown table”。
擴展截圖
下載phpMyAdmin - Markdown Table Export擴展crx文件
下載phpMyAdmin - Markdown Table Export擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Easy way to copy phpMyAdmin table to markdown table. 擴展基本資訊
| 名稱 | |
| ID | gpicjhgbkgjmjejchhioaiadmjdhggjb |
| 官方網址 | https://chrome.google.com/webstore/detail/phpmyadmin-markdown-table/gpicjhgbkgjmjejchhioaiadmjdhggjb |
| 簡介 | Export query result from phpMyAdmin as markdown table |
| 檔案大小 | 50.53 KB |
| 安裝次數 | 217 |
| 目前版本 | 1.7 |
| 更新時間 | 2017-12-04 |
| 上架時間 | 2017-12-04 |
| 評分 | 4.60/5 共 5 次評分 |
| 開發者 | http://www.deray.org |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "phpMyAdmin - Markdown Table Export",
"description": "Export query result from phpMyAdmin as markdown table",
"version": "1.7",
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "icons\/icon19.png",
"38": "icons\/icon38.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*phpMyAdmin*\/*"
],
"js": [
".\/js\/jquery.min.js",
".\/js\/clipboard.min.js",
".\/js\/export.js"
],
"css": [
".\/css\/export.css"
]
}
],
"permissions": [
"tabs"
]
} | |