TOC Medium
Table Of Contents generator for Medium stories
Wat is TOC Medium?
TOC Medium is een Chrome-extensie ontwikkeld door https://vdeantoni.com, en de belangrijkste functie is "Table Of Contents generator for Medium stories".
Extensie Screenshots
Download het CRX-bestand van de extensie TOC Medium
Download TOC Medium-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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.                     Basisinformatie over de Extensie
| Naam |   |  
| ID | ppcdgggkanhfoghepgomkbbnkggbiecn | 
| Officiële URL | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn | 
| Beschrijving | Table Of Contents generator for Medium stories | 
| Bestandsgrootte | 16.05 KB | 
| Aantal Installaties | 2,544 | 
| Huidige Versie | 0.7 | 
| Laatst Bijgewerkt | 2023-12-30 | 
| Publicatiedatum | 2020-04-10 | 
| Beoordeling | 3.92/5 Totaal 13 Beoordelingen | 
| Ontwikkelaar | https://vdeantoni.com | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://github.com/vdeantoni/toc-medium | 
| Ondersteunde Talen | 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"
    }
}  |  |