TOC Medium

Table Of Contents generator for Medium stories

Vad är TOC Medium?

TOC Medium är en Chrome-tillägg utvecklad av https://vdeantoni.com, och dess huvudfunktion är "Table Of Contents generator for Medium stories".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner TOC Medium-förlängningens CRX-fil

Ladda ner TOC Medium-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn TOC Medium TOC Medium
ID ppcdgggkanhfoghepgomkbbnkggbiecn
Officiell webbadress https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn
Beskrivning Table Of Contents generator for Medium stories
Filstorlek 16.05 KB
Antal Installationer 2,544
Aktuell Version 0.7
Senast Uppdaterad 2023-12-30
Publiceringsdatum 2020-04-10
Betyg 3.92/5 Totalt 13 Betyg
Utvecklare https://vdeantoni.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/vdeantoni/toc-medium
Stödda Språk 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"
    }
}