TOC Medium
Table Of Contents generator for Medium stories
Co je TOC Medium?
TOC Medium je rozšíření Chrome vyvinuté https://vdeantoni.com, a jeho hlavní funkcí je „Table Of Contents generator for Medium stories“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření TOC Medium
Stáhněte si soubory rozšíření TOC Medium ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | TOC Medium |
ID | ppcdgggkanhfoghepgomkbbnkggbiecn |
Oficiální URL | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn |
Popis | Table Of Contents generator for Medium stories |
Velikost souboru | 16.05 KB |
Počet instalací | 2,544 |
Aktuální Verze | 0.7 |
Poslední Aktualizace | 2023-12-30 |
Datum Vydání | 2020-04-10 |
Hodnocení | 3.92/5 Celkem 13 Hodnocení |
Vývojář | https://vdeantoni.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/vdeantoni/toc-medium |
Podporované Jazyky | 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" } } |