TOC Medium

Table Of Contents generator for Medium stories

What is TOC Medium?

TOC Medium is a Chrome extension developed by https://vdeantoni.com, and its main feature is "Table Of Contents generator for Medium stories".

Extension Screenshots

screenshot
screenshot

Download TOC Medium Extension CRX File

Download TOC Medium extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name TOC Medium TOC Medium
ID ppcdgggkanhfoghepgomkbbnkggbiecn
Official URL https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn
Description Table Of Contents generator for Medium stories
File Size 16.05 KB
Installation Count 2,544
Current Version 0.7
Last Updated 2023-12-30
Publish Date 2020-04-10
Rating 3.92/5 Total 13 Ratings
Developer https://vdeantoni.com
Email [email protected]
Payment Type free
Extension Website https://github.com/vdeantoni/toc-medium
Supported Languages 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"
    }
}