TOC Medium
Table Of Contents generator for Medium stories
什麼是TOC Medium?
TOC Medium是由https://vdeantoni.com開發的Chrome擴展程式,該擴展的主要功能是“Table Of Contents generator for Medium stories”。
擴展截圖
下載TOC Medium擴展crx文件
下載TOC Medium擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extensions adds a new action to Medium's editor: "Add a Table of Contents". Upon selection, the extension finds all the heading tags and creates a list with their titles and links. Once created the TOC won't be updated, if headings change, a new TOC will need to be generated. Github repo: https://github.com/vdeantoni/toc-medium Pull requests and feature requests via Issues are appreciated.
擴展基本資訊
名稱 | TOC Medium |
ID | ppcdgggkanhfoghepgomkbbnkggbiecn |
官方網址 | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn |
簡介 | Table Of Contents generator for Medium stories |
檔案大小 | 16.05 KB |
安裝次數 | 2,544 |
目前版本 | 0.7 |
更新時間 | 2023-12-30 |
上架時間 | 2020-04-10 |
評分 | 3.92/5 共 13 次評分 |
開發者 | https://vdeantoni.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/vdeantoni/toc-medium |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TOC Medium", "version": "0.7", "description": "Table Of Contents generator for Medium stories", "manifest_version": 3, "author": "Vinicius De Antoni", "short_name": "toc-medium", "permissions": [], "background": { "service_worker": "service_worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/medium.com\/*" ], "css": [ "tooltip.css" ], "js": [ "tooltip.js" ] } ], "icons": { "16": "images\/toc-medium16.png", "32": "images\/toc-medium32.png", "48": "images\/toc-medium48.png", "128": "images\/toc-medium128.png" } } |