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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |