Skip to content

Instantly share code, notes, and snippets.

View nvdung-khtn's full-sized avatar

Nguyễn Văn Dũng nvdung-khtn

View GitHub Profile
@nvdung-khtn
nvdung-khtn / [Minified] - ChatGPT-TOC.js
Last active October 30, 2025 07:51 — forked from htrnguyen/[Minified] - ChatGPT-TOC.js
Add table of contents to ChatGPT
javascript:(function(){"use strict";if(document.getElementById("toc-panel")||document.getElementById("toc-handle"))return;const e=document.createElement("style");e.textContent="#toc-panel{position:fixed;top:0;right:0;width:300px;height:100%;background:#fafafa;box-shadow:-4px 0 8px rgba(0,0,0,0.1);font-family:sans-serif;font-size:.9rem;border-left:1px solid #ddd;display:flex;flex-direction:column;z-index:9998;transform:translateX(0);transition:transform .3s ease}#toc-panel.collapsed{transform:translateX(300px)}#toc-header{padding:8px 12px;background:#ddd;border-bottom:1px solid #ccc;font-weight:700;color:#333;flex-shrink:0}#toc-list{list-style:none;flex:1;overflow-y:auto;margin:0;padding:8px;line-height:1.5}#toc-list li{padding:6px 10px;cursor:pointer;border-radius:4px;margin-bottom:4px;transition:background-color .2s}#toc-list li.user{background:#334155}#toc-list li.ai{background:#7C2D12}#toc-list li:hover{filter:brightness(95%)}#toc-list li.selected{background:#fffacd;border:1px solid #ffd700}#toc-list ul{ma