Markdown That

Markdown selected text from context menu or a reddit/quora post

Markdown That là gì?

Markdown That là một tiện ích mở rộng Chrome được phát triển bởi orelogo, và tính năng chính của nó là "Markdown selected text from context menu or a reddit/quora post".

Ả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 Markdown That

Tải xuống các tệp mở rộng Markdown That 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

                        This extension will add a context menu option to convert selected text to markdown. A popup will display the message. The extension will add a "mark that down" button to reddit and quora posts. Once pressed, the popup will display the post in the markdown format along with the title, author, date, and url.

Icon: freepik.com from flaticon.com
Music: bensound.com                    

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

Tên Markdown That Markdown That
ID pgoffpcmmeagpjfjeeflmaleeikjdknc
URL Chính Thức https://chrome.google.com/webstore/detail/markdown-that/pgoffpcmmeagpjfjeeflmaleeikjdknc
Mô tả Markdown selected text from context menu or a reddit/quora post
Kích Thước Tệp 39.53 KB
Số Lần Cài Đặt 196
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-03-09
Ngày Phát Hành 2016-03-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển orelogo
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/orelogo/markdownthat/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markdown That",
    "description": "Markdown selected text from context menu or a reddit\/quora post",
    "version": "1.0.1",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-2.2.0.min.js",
                "js\/contentscript.js"
            ],
            "css": [
                "css\/popup.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}