TOC Medium

Table Of Contents generator for Medium stories

TOC Mediumคืออะไร?

TOC Medium เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://vdeantoni.com และคุณลักษณะหลักของมันคือ "Table Of Contents generator for Medium stories"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TOC Medium

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}