Table of Contents Sidebar

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

O que é Table of Contents Sidebar?

Table of Contents Sidebar é uma extensão do Chrome desenvolvida por codedraken, e sua principal característica é "A lightweight plugin that generates a table of contents sidebar for navigating or copying".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Table of Contents Sidebar

Baixe arquivos de extensão Table of Contents Sidebar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Table of Contents Sidebar Table of Contents Sidebar
ID gnfemeofnjpbaigdpammdejmmjhdejih
URL Oficial https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih
Descrição A lightweight plugin that generates a table of contents sidebar for navigating or copying
Tamanho do Arquivo 128 KB
Contagem de Instalações 896
Versão Atual 1.0
Última Atualização 2019-05-27
Data de Publicação 2019-05-27
Classificação 2.67/5 Total de 3 Avaliações
Desenvolvedor codedraken
Tipo de Pagamento free
Site da Extensão https://github.com/CodeDraken/table-of-contents-generator
URL da Página de Ajuda https://github.com/CodeDraken/table-of-contents-generator/issues
Idiomas Suportados 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"
    ]
}