phpMyAdmin - Markdown Table Export

Export query result from phpMyAdmin as markdown table

phpMyAdmin - Markdown Table Export là gì?

phpMyAdmin - Markdown Table Export là một tiện ích mở rộng Chrome được phát triển bởi http://www.deray.org, và tính năng chính của nó là "Export query result from phpMyAdmin as markdown table".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng phpMyAdmin - Markdown Table Export

Tải xuống các tệp mở rộng phpMyAdmin - Markdown Table Export dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Easy way to copy phpMyAdmin table to markdown table.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên phpMyAdmin - Markdown Table Export phpMyAdmin - Markdown Table Export
ID gpicjhgbkgjmjejchhioaiadmjdhggjb
URL Chính Thức https://chrome.google.com/webstore/detail/phpmyadmin-markdown-table/gpicjhgbkgjmjejchhioaiadmjdhggjb
Mô tả Export query result from phpMyAdmin as markdown table
Kích Thước Tệp 50.53 KB
Số Lần Cài Đặt 217
Phiên Bản Hiện Tại 1.7
Cập Nhật Lần Cuối 2017-12-04
Ngày Phát Hành 2017-12-04
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển http://www.deray.org
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}