TOC Medium
Table Of Contents generator for Medium stories
Cos'è TOC Medium?
TOC Medium è un'estensione di Chrome sviluppata da https://vdeantoni.com, e la sua funzione principale è "Table Of Contents generator for Medium stories".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TOC Medium
Scarica i file di estensione TOC Medium in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | TOC Medium |
ID | ppcdgggkanhfoghepgomkbbnkggbiecn |
URL Ufficiale | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn |
Descrizione | Table Of Contents generator for Medium stories |
Dimensione del File | 16.05 KB |
Conteggio Installazioni | 2,544 |
Versione Corrente | 0.7 |
Ultimo Aggiornamento | 2023-12-30 |
Data di Pubblicazione | 2020-04-10 |
Valutazione | 3.92/5 Totale 13 Valutazioni |
Sviluppatore | https://vdeantoni.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/vdeantoni/toc-medium |
Lingue Supportate | 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" } } |