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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a navigation menu to any readme or Markdown file on GitHub."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Markdown Menu for GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |