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 |
Eメール | [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" } } |