Github Readme Markdown

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

ما هو Github Readme Markdown؟

Github Readme Markdown هو إضافة Chrome تم تطويرها بواسطة anantrungta1999، والميزة الرئيسية لها هي "So, Now don't worry about remembring markup, coz it's right there.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Github Readme Markdown

قم بتنزيل ملفات الامتداد Github Readme Markdown بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        :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]                    

معلومات أساسية عن التمديد

الاسم Github Readme Markdown Github Readme Markdown
ID paacehodnnofnmhogoclomamladkpabg
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg
الوصف So, Now don't worry about remembring markup, coz it's right there.
حجم الملف 14.59 KB
عدد التثبيتات 320
النسخة الحالية 1.5
آخر تحديث 2019-07-18
تاريخ النشر 2019-07-18
تقييم 4.38/5 مجموع تقييمات 13
المطور anantrungta1999
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Anant016/github-readme-markdown-chrome-extension
عنوان صفحة المساعدة https://github.com/Anant016/github-readme-markdown-chrome-extension
اللغات المدعومة 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"
    }
}