Markdown Menu for GitHub
Adds a navigation menu to any readme or Markdown file on GitHub.
Markdown Menu for GitHub란 무엇입니까?
Markdown Menu for GitHub은(는) Will Klein에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a navigation menu to any readme or Markdown file on GitHub."입니다.
확장 프로그램 스크린샷
Markdown Menu for GitHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Independently developed and unaffiliated with GitHub. This extension is open source: https://github.com/willklein/markdown-menu --- GitHub READMEs and Markdown documents don't always include a Table of Contents. Well-documented repos have longer documents that can be difficult to navigate. This extension will automagically generate and add a navigation menu with a table of contents. Click the three-bar icon at the top of any Markdown file to view the menu. Click on a link to scroll to that section of the document. That's it! --- Permissions requested: - Read and change your data on github.com This extension is scoped and enabled only when accessing https://github.com/*. This extension looks for Markdown headers, generates a navigation menu and adds it to Markdown views on GitHub. - Read your browsing history For this extension to work across page navigations within github.com, permissions are necessary to use chrome.webNavigation.onHistoryStateUpdated. This lets the extension hook into page navigations and trigger without full page refreshes.
확장 프로그램 기본 정보
이름 | Markdown Menu for GitHub |
ID | jekgocfoijmbgcjejohdgmojaejofdpo |
공식 URL | https://chromewebstore.google.com/detail/markdown-menu-for-github/jekgocfoijmbgcjejohdgmojaejofdpo |
설명 | Adds a navigation menu to any readme or Markdown file on GitHub. |
파일 크기 | 5.8 KB |
설치 횟수 | 1,048 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2018-08-09 |
출시 날짜 | 2018-08-09 |
평점 | 4.78/5 총 9 개의 평점 |
개발자 | Will Klein |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/willklein/markdown-menu |
도움말 페이지 URL | https://waffle.io/willklein/markdown-menu |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.0", "manifest_version": 2, "description": "__MSG_appDescription__", "default_locale": "en", "background": { "persistent": false, "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "css": [ "styles\/contentstyle.css" ] } ], "permissions": [ "https:\/\/github.com\/*\/*", "webNavigation" ] } |