Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Vad är Markdown Outline for GitHub?
Markdown Outline for GitHub är en Chrome-tillägg utvecklad av mitsuruog, och dess huvudfunktion är "It will show you the outline of the markdown file on GitHub.".
Tilläggsskärmbilder
Ladda ner Markdown Outline for GitHub-förlängningens CRX-fil
Ladda ner Markdown Outline for GitHub-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
It will show you the outline of the markdown file on GitHub and Gist. Grundläggande Information om Tillägg
| Namn | |
| ID | nkbceicafhlobddjmlflmhbloffdekcd |
| Officiell webbadress | https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd |
| Beskrivning | It will show you the outline of the markdown file on GitHub. |
| Filstorlek | 31.85 KB |
| Antal Installationer | 47 |
| Aktuell Version | 0.1.3 |
| Senast Uppdaterad | 2020-09-12 |
| Publiceringsdatum | 2020-06-02 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | mitsuruog |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/mitsuruog/markdown-outline-for-github |
| Hjälpsida URL | https://github.com/mitsuruog/markdown-outline-for-github/issues |
| Stödda Språk | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.1.3",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "assets\/icons\/icon-16.png",
"128": "assets\/icons\/icon-128.png"
},
"default_locale": "ja",
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"tabs",
"https:\/\/github.com\/*",
"https:\/\/gist.github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/gist.github.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |