Smart TOC

Webpage outliner

Smart TOCคืออะไร?

Smart TOC เป็นส่วนขยายของ Chrome ที่พัฒนาโดย FallenMax และคุณลักษณะหลักของมันคือ "Webpage outliner"

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Smart TOC ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Displays a table of contents for any website, making it easier to read and navigate long articles, documentations, and online books.

## Features

- Auto detects article and headings, with our smart algorithm
- Highlights current heading
- Click to jump to heading
- Expand/fold headings, or to specified level
- Floating panel, drag, resize, or dock to side
- Mouse hover while holding Alt/Option key to glance
- Copy to clipboard
- Clean user interface
- Only runs when you use it

The Pro version offers extra features:

- Dark mode, automatically
- Up to 6 heading levels (free version capped to 3)
- Quickly go to headings, with full-keyboard support

## Usage

Click the browser button to toggle table of contents for the current site

## Supported websites

Any website that conforms to the HTML standard and uses HTML heading tags properly (e.g. Wikipedia.com). 

You can also enable Smart TOC for local html in the extension settings.

## Support

- Feature requests: https://smart-toc.canny.io/feature-requests
- Bug report: https://smart-toc.canny.io/bug-report
- Email: [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Smart TOC Smart TOC
ID lifgeihcfpkmmlfjbailfpfhbahhibba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smart-toc/lifgeihcfpkmmlfjbailfpfhbahhibba
คำอธิบาย Webpage outliner
ขนาดไฟล์ 81.46 KB
จำนวนการติดตั้ง 30,000
เวอร์ชันปัจจุบัน 0.11.18
อัปเดตครั้งล่าสุด 2024-02-27
วันที่เผยแพร่ 2020-03-12
คะแนน 4.79/5 รวมทั้งหมด 95 คะแนน
ผู้พัฒนา FallenMax
อีเมล [email protected]
ประเภทการชำระเงิน in_app
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Smart TOC",
    "version": "0.11.18",
    "description": "Webpage outliner",
    "action": {
        "default_icon": "icon.png",
        "default_title": "Toggle table of contents"
    },
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background\/background.js"
    },
    "commands": {
        "toggle": {
            "description": "Show\/hide TOC"
        },
        "prev": {
            "description": "Jump to previous heading"
        },
        "next": {
            "description": "Jump to next heading"
        },
        "search": {
            "description": "Toggle search (Pro)"
        },
        "theme": {
            "description": "Toggle dark mode (Pro)"
        },
        "expand:more": {
            "description": "Expand more"
        },
        "expand:less": {
            "description": "Expand less"
        },
        "expand:auto": {
            "description": "Expand auto"
        },
        "side:left": {
            "description": "Move panel to left"
        },
        "side:right": {
            "description": "Move panel to right"
        },
        "display:sidePanel": {
            "description": "Display as side panel"
        },
        "display:floating": {
            "description": "Display as floating"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "optional_permissions": [
        "identity",
        "identity.email",
        "tabs"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "author": "[email protected]"
}