Table of Contents Sidebar

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

Apa itu Table of Contents Sidebar?

Table of Contents Sidebar adalah ekstensi Chrome yang dikembangkan oleh codedraken, dan fitur utamanya adalah "A lightweight plugin that generates a table of contents sidebar for navigating or copying".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Table of Contents Sidebar

Unduh file ekstensi Table of Contents Sidebar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama Table of Contents Sidebar Table of Contents Sidebar
ID gnfemeofnjpbaigdpammdejmmjhdejih
URL Resmi https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih
Deskripsi A lightweight plugin that generates a table of contents sidebar for navigating or copying
Ukuran File 128 KB
Jumlah Instalasi 896
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-05-27
Tanggal Publikasi 2019-05-27
Penilaian 2.67/5 Total 3 Penilaian
Pengembang codedraken
Tipe Pembayaran free
Situs Ekstensi https://github.com/CodeDraken/table-of-contents-generator
URL Halaman Bantuan https://github.com/CodeDraken/table-of-contents-generator/issues
Bahasa yang Didukung 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"
    ]
}