HTML5 Outliner
Generates a navigable page outline with heading and sectioning elements
HTML5 Outliner क्या है?
HTML5 Outliner Dominykas Blyžė द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates a navigable page outline with heading and sectioning elements"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HTML5 Outliner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is using the HTML5 outline algorithm to create a table of contents. Should also work well with HTML4 (and older?) pages, that have structured headings. The table of contents is clickable and tries to highlight the heading/section in question after the jump. The extension should prove useful to people who find themselves often using online HTML5 outliners. Comments, bug reports and suggestions much appreciated! Extension source code: https://github.com/h5o/h5o-chrome Outliner source code: https://github.com/h5o/h5o-js
एक्सटेंशन की मूल जानकारी
नाम | HTML5 Outliner |
ID | afoibpobokebhgfnknfndkgemglggomo |
आधिकारिक URL | https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo |
विवरण | Generates a navigable page outline with heading and sectioning elements |
फ़ाइल का आकार | 25.58 KB |
स्थापना संख्या | 100,000 |
वर्तमान संस्करण | 0.8.14 |
अंतिम अपडेट | 2020-06-05 |
प्रकाशन तिथि | 2020-06-03 |
रेटिंग | 4.24/5 कुल 259 रेटिंग्स |
डेवलपर | Dominykas Blyžė |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/h5o/h5o-chrome |
सहायता पृष्ठ URL | https://github.com/h5o/h5o-chrome/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML5 Outliner", "short_name": "h5o", "manifest_version": 2, "description": "Generates a navigable page outline with heading and sectioning elements", "icons": { "48": "img\/48.png", "128": "img\/128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "outliner.min.js", "createOutline.js" ] } ], "page_action": { "default_icon": "img\/16.png", "default_title": "Outline", "default_popup": "popup.html" }, "version": "0.8.14", "author": { "name": "Dominykas Bly\u017e\u0117", "email": "[email protected]", "url": "http:\/\/www.dominykas.com\/" } } |