Table of Contents Sidebar

A lightweight plugin that generates a table of contents sidebar for navigating or copying

Co je Table of Contents Sidebar?

Table of Contents Sidebar je rozšíření Chrome vyvinuté codedraken, a jeho hlavní funkcí je „A lightweight plugin that generates a table of contents sidebar for navigating or copying“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Table of Contents Sidebar

Stáhněte si soubory rozšíření Table of Contents Sidebar 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í

                        Quickly and easily generate a table of contents for articles you're reading or for use on articles you write.

This extension currently only supports the Medium platform. ( https://medium.com/ )

It's also free and open-source. You can get the code for it here: https://github.com/CodeDraken/table-of-contents-generator



Icon created by Icons8 @ https://icons8.com/                    

Základní Informace o Rozšíření

Název Table of Contents Sidebar Table of Contents Sidebar
ID gnfemeofnjpbaigdpammdejmmjhdejih
Oficiální URL https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih
Popis A lightweight plugin that generates a table of contents sidebar for navigating or copying
Velikost souboru 128 KB
Počet instalací 896
Aktuální Verze 1.0
Poslední Aktualizace 2019-05-27
Datum Vydání 2019-05-27
Hodnocení 2.67/5 Celkem 3 Hodnocení
Vývojář codedraken
Typ Platby free
Webové stránky Rozšíření https://github.com/CodeDraken/table-of-contents-generator
URL Stránky Nápovědy https://github.com/CodeDraken/table-of-contents-generator/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Table of Contents Sidebar",
    "version": "1.0",
    "author": "CodeDraken",
    "description": "A lightweight plugin that generates a table of contents sidebar for navigating or copying",
    "manifest_version": 2,
    "icons": {
        "128": ".\/assets\/icon128.png"
    },
    "browser_action": {
        "default_title": "ToC",
        "default_popup": ".\/html\/popup.html"
    },
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}