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 |
官方URL | 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" } } |