Github Readme Markdown
So, Now don't worry about remembring markup, coz it's right there.
Co to jest Github Readme Markdown?
Github Readme Markdown to rozszerzenie Chrome opracowane przez anantrungta1999, a jego główną funkcją jest „So, Now don't worry about remembring markup, coz it's right there.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Readme Markdown
Pobierz pliki rozszerzeń Github Readme Markdown w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
: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]
Podstawowe informacje o rozszerzeniu
Nazwa | Github Readme Markdown |
ID | paacehodnnofnmhogoclomamladkpabg |
Oficjalny URL | https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg |
Opis | So, Now don't worry about remembring markup, coz it's right there. |
Rozmiar pliku | 14.59 KB |
Liczba instalacji | 320 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2019-07-18 |
Data Publikacji | 2019-07-18 |
Ocena | 4.38/5 Łącznie 13 Oceny |
Deweloper | anantrungta1999 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Anant016/github-readme-markdown-chrome-extension |
Adres URL Strony Pomocy | https://github.com/Anant016/github-readme-markdown-chrome-extension |
Obsługiwane Języki | 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" } } |