TOC of Medium

Create a table of contents on the edit screen of Medium.

什麼是TOC of Medium?

TOC of Medium是由nikaera開發的Chrome擴展程式,該擴展的主要功能是“Create a table of contents on the edit screen of Medium.”。

擴展截圖

screenshot
screenshot

下載TOC of Medium擴展crx文件

下載TOC of Medium擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        When you add this plugin, you can create a table of contents at the input position by pressing the Ctrl + t key!

Also, you can copy a table of contents by clicking on the clipboard icon that appears in the upper right corner of the screen. You can embed a table of contents in an article by pasting it where you want to insert it.

To update the table of contents, click on the clipboard icon again to copy the latest table of contents, or press Ctrl + t key at the position where you want to create the latest table of contents.

How to use: https://medium.com/@nikaera/8c8d344313fe
GitHub Repository: https://github.com/nikaera/toc-medium-extension                    

擴展基本資訊

名稱 TOC of Medium TOC of Medium
ID jcpcpidaogolhkcapgdiblaeglijmhaa
官方網址 https://chromewebstore.google.com/detail/toc-of-medium/jcpcpidaogolhkcapgdiblaeglijmhaa
簡介 Create a table of contents on the edit screen of Medium.
檔案大小 196 KB
安裝次數 140
目前版本 1.0.3
更新時間 2020-05-16
上架時間 2020-05-15
開發者 nikaera
電子郵箱 [email protected]
付費類型 free
擴展官網 https://medium.com/@nikaera/chrome-extension-for-creating-a-toc-for-medium-8c8d344313fe
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TOC of Medium",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Create a table of contents on the edit screen of Medium.",
    "web_accessible_resources": [
        "images\/buttonIcon.png"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "https:\/\/medium.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/medium.com\/p\/*"
            ],
            "css": [
                "stylesheets\/style.css"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}