TOC Medium
Table Of Contents generator for Medium stories
TOC Medium क्या है?
TOC Medium https://vdeantoni.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Table Of Contents generator for Medium stories"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TOC Medium एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extensions adds a new action to Medium's editor: "Add a Table of Contents". Upon selection, the extension finds all the heading tags and creates a list with their titles and links. Once created the TOC won't be updated, if headings change, a new TOC will need to be generated. Github repo: https://github.com/vdeantoni/toc-medium Pull requests and feature requests via Issues are appreciated.
एक्सटेंशन की मूल जानकारी
नाम | TOC Medium |
ID | ppcdgggkanhfoghepgomkbbnkggbiecn |
आधिकारिक URL | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn |
विवरण | Table Of Contents generator for Medium stories |
फ़ाइल का आकार | 16.05 KB |
स्थापना संख्या | 2,544 |
वर्तमान संस्करण | 0.7 |
अंतिम अपडेट | 2023-12-30 |
प्रकाशन तिथि | 2020-04-10 |
रेटिंग | 3.92/5 कुल 13 रेटिंग्स |
डेवलपर | https://vdeantoni.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/vdeantoni/toc-medium |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TOC Medium", "version": "0.7", "description": "Table Of Contents generator for Medium stories", "manifest_version": 3, "author": "Vinicius De Antoni", "short_name": "toc-medium", "permissions": [], "background": { "service_worker": "service_worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/medium.com\/*" ], "css": [ "tooltip.css" ], "js": [ "tooltip.js" ] } ], "icons": { "16": "images\/toc-medium16.png", "32": "images\/toc-medium32.png", "48": "images\/toc-medium48.png", "128": "images\/toc-medium128.png" } } |