Table of Contents Sidebar

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

Table of Contents Sidebarとは何ですか?

Table of Contents Sidebarはcodedrakenによって開発されたChromeの拡張機能で、その主な機能は「A lightweight plugin that generates a table of contents sidebar for navigating or copying」です。

拡張機能のスクリーンショット

screenshot

Table of Contents Sidebar拡張機能のCRXファイルをダウンロード

Table of Contents Sidebar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 Table of Contents Sidebar Table of Contents Sidebar
ID gnfemeofnjpbaigdpammdejmmjhdejih
公式URL https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih
説明 A lightweight plugin that generates a table of contents sidebar for navigating or copying
ファイルサイズ 128 KB
インストール数 896
現在のバージョン 1.0
最終更新日 2019-05-27
公開日 2019-05-27
評価 2.67/5 合計 3 レビュー
開発者 codedraken
支払い方法 free
拡張機能のウェブサイト https://github.com/CodeDraken/table-of-contents-generator
ヘルプページのURL https://github.com/CodeDraken/table-of-contents-generator/issues
対応言語 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"
    ]
}