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”。

扩展截图

screenshot

下载phpMyAdmin - Markdown Table Export扩展crx文件

下载phpMyAdmin - Markdown Table Export扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Easy way to copy phpMyAdmin table to markdown table.                    

扩展基本信息

名称 phpMyAdmin - Markdown Table Export phpMyAdmin - Markdown Table Export
ID gpicjhgbkgjmjejchhioaiadmjdhggjb
官方URL 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"
    ]
}