TOC Medium
Table Of Contents generator for Medium stories
TOC Medium là gì?
TOC Medium là một tiện ích mở rộng Chrome được phát triển bởi https://vdeantoni.com, và tính năng chính của nó là "Table Of Contents generator for Medium stories".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TOC Medium
Tải xuống các tệp mở rộng TOC Medium dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TOC Medium |
ID | ppcdgggkanhfoghepgomkbbnkggbiecn |
URL Chính Thức | https://chromewebstore.google.com/detail/toc-medium/ppcdgggkanhfoghepgomkbbnkggbiecn |
Mô tả | Table Of Contents generator for Medium stories |
Kích Thước Tệp | 16.05 KB |
Số Lần Cài Đặt | 2,544 |
Phiên Bản Hiện Tại | 0.7 |
Cập Nhật Lần Cuối | 2023-12-30 |
Ngày Phát Hành | 2020-04-10 |
Đánh Giá | 3.92/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | https://vdeantoni.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/vdeantoni/toc-medium |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |