Github Readme Markdown

So, Now don't worry about remembring markup, coz it's right there.

Github Readme Markdown là gì?

Github Readme Markdown là một tiện ích mở rộng Chrome được phát triển bởi anantrungta1999, và tính năng chính của nó là "So, Now don't worry about remembring markup, coz it's right there.".

Ả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 Github Readme Markdown

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

                        :smiley: It is a simple markdown for readme.md files at instant. This extension is specially for Github users to easily write their most important part - "The Documentation", very easily, without searching for markdown at other pages.
How to use?
1. Just Add it to your browser
2. That's it!!
Whenever editing a Readme.md file, this extra option will show automatically. [See picture]                    

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

Tên Github Readme Markdown Github Readme Markdown
ID paacehodnnofnmhogoclomamladkpabg
URL Chính Thức https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg
Mô tả So, Now don't worry about remembring markup, coz it's right there.
Kích Thước Tệp 14.59 KB
Số Lần Cài Đặt 320
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2019-07-18
Ngày Phát Hành 2019-07-18
Đánh Giá 4.38/5 Tổng số 13 Đánh Giá
Nhà Phát Triển anantrungta1999
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Anant016/github-readme-markdown-chrome-extension
URL Trang Trợ Giúp https://github.com/Anant016/github-readme-markdown-chrome-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "https:\/\/github.com\/Anant016",
    "name": "Github Readme Markdown",
    "icons": {
        "16": "git16.png",
        "48": "git48.png",
        "128": "git128.png"
    },
    "version": "1.5",
    "description": "So, Now don't worry about remembring markup, coz it's right there.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/new*.md*",
                "https:\/\/github.com\/*\/edit*.md*",
                "https:\/\/github.com\/*\/new*.MD*",
                "https:\/\/github.com\/*\/edit*.MD*",
                "https:\/\/github.com\/*\/edit*readme",
                "https:\/\/github.com\/*\/new*readme"
            ],
            "js": [
                "showoption.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "git16.png",
        "default_popup": "popup.html"
    }
}