phpMyAdmin - Markdown Table Export

Export query result from phpMyAdmin as markdown table

Wat is phpMyAdmin - Markdown Table Export?

phpMyAdmin - Markdown Table Export is een Chrome-extensie ontwikkeld door http://www.deray.org, en de belangrijkste functie is "Export query result from phpMyAdmin as markdown table".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie phpMyAdmin - Markdown Table Export

Download phpMyAdmin - Markdown Table Export-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Easy way to copy phpMyAdmin table to markdown table.                    

Basisinformatie over de Extensie

Naam phpMyAdmin - Markdown Table Export phpMyAdmin - Markdown Table Export
ID gpicjhgbkgjmjejchhioaiadmjdhggjb
Officiële URL https://chrome.google.com/webstore/detail/phpmyadmin-markdown-table/gpicjhgbkgjmjejchhioaiadmjdhggjb
Beschrijving Export query result from phpMyAdmin as markdown table
Bestandsgrootte 50.53 KB
Aantal Installaties 217
Huidige Versie 1.7
Laatst Bijgewerkt 2017-12-04
Publicatiedatum 2017-12-04
Beoordeling 4.60/5 Totaal 5 Beoordelingen
Ontwikkelaar http://www.deray.org
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}