Github Readme Markdown
So, Now don't worry about remembring markup, coz it's right there.
Wat is Github Readme Markdown?
Github Readme Markdown is een Chrome-extensie ontwikkeld door anantrungta1999, en de belangrijkste functie is "So, Now don't worry about remembring markup, coz it's right there.".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Readme Markdown
Download Github Readme Markdown-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
: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] Basisinformatie over de Extensie
| Naam | |
| ID | paacehodnnofnmhogoclomamladkpabg |
| Officiële URL | https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg |
| Beschrijving | So, Now don't worry about remembring markup, coz it's right there. |
| Bestandsgrootte | 14.59 KB |
| Aantal Installaties | 320 |
| Huidige Versie | 1.5 |
| Laatst Bijgewerkt | 2019-07-18 |
| Publicatiedatum | 2019-07-18 |
| Beoordeling | 4.38/5 Totaal 13 Beoordelingen |
| Ontwikkelaar | anantrungta1999 |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/Anant016/github-readme-markdown-chrome-extension |
| Help Pagina-URL | https://github.com/Anant016/github-readme-markdown-chrome-extension |
| Ondersteunde Talen | 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"
}
} | |