Markdown Menu for GitHub
Adds a navigation menu to any readme or Markdown file on GitHub.
Markdown Menu for GitHubคืออะไร?
Markdown Menu for GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Will Klein และคุณลักษณะหลักของมันคือ "Adds a navigation menu to any readme or Markdown file on GitHub."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Markdown Menu for GitHub
ดาวน์โหลดไฟล์ส่วนขยาย Markdown Menu for GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |