Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Hvad er Markdown Outline for GitHub?
Markdown Outline for GitHub er en Chrome-udvidelse udviklet af mitsuruog, og dens hovedfunktion er "It will show you the outline of the markdown file on GitHub.".
Udvidelsesskærmbilleder
Download Markdown Outline for GitHub-udvidelses-CRX-fil
Download Markdown Outline for GitHub-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
It will show you the outline of the markdown file on GitHub and Gist. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nkbceicafhlobddjmlflmhbloffdekcd |
| Officiel URL | https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd |
| Beskrivelse | It will show you the outline of the markdown file on GitHub. |
| Filstørrelse | 31.85 KB |
| Antal Installationer | 47 |
| Nuværende Version | 0.1.3 |
| Senest Opdateret | 2020-09-12 |
| Udgivelsesdato | 2020-06-02 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | mitsuruog |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/mitsuruog/markdown-outline-for-github |
| Hjælpeside-URL | https://github.com/mitsuruog/markdown-outline-for-github/issues |
| Understøttede Sprog | 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
}
]
} | |