phpMyAdmin - Markdown Table Export

Export query result from phpMyAdmin as markdown table

What is phpMyAdmin - Markdown Table Export?

phpMyAdmin - Markdown Table Export is a Chrome extension developed by http://www.deray.org, and its main feature is "Export query result from phpMyAdmin as markdown table".

Extension Screenshots

screenshot

Download phpMyAdmin - Markdown Table Export Extension CRX File

Download phpMyAdmin - Markdown Table Export extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Easy way to copy phpMyAdmin table to markdown table.                    

Extension Basic Information

Name phpMyAdmin - Markdown Table Export phpMyAdmin - Markdown Table Export
ID gpicjhgbkgjmjejchhioaiadmjdhggjb
Official URL https://chrome.google.com/webstore/detail/phpmyadmin-markdown-table/gpicjhgbkgjmjejchhioaiadmjdhggjb
Description Export query result from phpMyAdmin as markdown table
File Size 50.53 KB
Installation Count 217
Current Version 1.7
Last Updated 2017-12-04
Publish Date 2017-12-04
Rating 4.60/5 Total 5 Ratings
Developer http://www.deray.org
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}