TOC of Medium
Create a table of contents on the edit screen of Medium.
TOC of Medium란 무엇입니까?
TOC of Medium은(는) nikaera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create a table of contents on the edit screen of Medium."입니다.
확장 프로그램 스크린샷
TOC of Medium 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When you add this plugin, you can create a table of contents at the input position by pressing the Ctrl + t key! Also, you can copy a table of contents by clicking on the clipboard icon that appears in the upper right corner of the screen. You can embed a table of contents in an article by pasting it where you want to insert it. To update the table of contents, click on the clipboard icon again to copy the latest table of contents, or press Ctrl + t key at the position where you want to create the latest table of contents. How to use: https://medium.com/@nikaera/8c8d344313fe GitHub Repository: https://github.com/nikaera/toc-medium-extension
확장 프로그램 기본 정보
이름 | TOC of Medium |
ID | jcpcpidaogolhkcapgdiblaeglijmhaa |
공식 URL | https://chromewebstore.google.com/detail/toc-of-medium/jcpcpidaogolhkcapgdiblaeglijmhaa |
설명 | Create a table of contents on the edit screen of Medium. |
파일 크기 | 196 KB |
설치 횟수 | 140 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2020-05-16 |
출시 날짜 | 2020-05-15 |
개발자 | nikaera |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://medium.com/@nikaera/chrome-extension-for-creating-a-toc-for-medium-8c8d344313fe |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TOC of Medium", "version": "1.0.3", "manifest_version": 2, "description": "Create a table of contents on the edit screen of Medium.", "web_accessible_resources": [ "images\/buttonIcon.png" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "https:\/\/medium.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/medium.com\/p\/*" ], "css": [ "stylesheets\/style.css" ], "js": [ "app.js" ] } ] } |