├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── Update.md ├── package-extension.js ├── package.json ├── src ├── _locales │ ├── en │ │ └── messages.json │ └── zh_CN │ │ └── messages.json ├── background │ └── index.ts ├── content │ ├── index.ts │ ├── navigation │ │ ├── answerIndexManager.ts │ │ ├── rightSideTimelineNavigator.ts │ │ ├── scrollAndHighlight.ts │ │ └── themes.ts │ ├── siteAdapters │ │ ├── chatgptAdapter.ts │ │ ├── claudeAdapter.ts │ │ ├── customSiteAdapter.ts │ │ ├── deepseekAdapter.ts │ │ ├── geminiAdapter.ts │ │ ├── grokAdapter.ts │ │ └── index.ts │ └── store │ │ ├── favoriteStore.ts │ │ └── pinnedStore.ts ├── icon128.png ├── icon16.png ├── icon32.png ├── icon48.png ├── manifest.json ├── options │ ├── index.html │ └── index.ts ├── popup │ ├── index.html │ └── index.ts └── utils │ └── i18n.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.log 4 | .DS_Store 5 | 6 | TODO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/README_EN.md -------------------------------------------------------------------------------- /Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/Update.md -------------------------------------------------------------------------------- /package-extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/package-extension.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/package.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/background/index.ts -------------------------------------------------------------------------------- /src/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/index.ts -------------------------------------------------------------------------------- /src/content/navigation/answerIndexManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/navigation/answerIndexManager.ts -------------------------------------------------------------------------------- /src/content/navigation/rightSideTimelineNavigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/navigation/rightSideTimelineNavigator.ts -------------------------------------------------------------------------------- /src/content/navigation/scrollAndHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/navigation/scrollAndHighlight.ts -------------------------------------------------------------------------------- /src/content/navigation/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/navigation/themes.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/chatgptAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/chatgptAdapter.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/claudeAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/claudeAdapter.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/customSiteAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/customSiteAdapter.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/deepseekAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/deepseekAdapter.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/geminiAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/geminiAdapter.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/grokAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/grokAdapter.ts -------------------------------------------------------------------------------- /src/content/siteAdapters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/siteAdapters/index.ts -------------------------------------------------------------------------------- /src/content/store/favoriteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/store/favoriteStore.ts -------------------------------------------------------------------------------- /src/content/store/pinnedStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/content/store/pinnedStore.ts -------------------------------------------------------------------------------- /src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/icon128.png -------------------------------------------------------------------------------- /src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/icon16.png -------------------------------------------------------------------------------- /src/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/icon32.png -------------------------------------------------------------------------------- /src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/icon48.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/options/index.html -------------------------------------------------------------------------------- /src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/options/index.ts -------------------------------------------------------------------------------- /src/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/popup/index.html -------------------------------------------------------------------------------- /src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/popup/index.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JASON-QWeb/AiChat-QuickJump/HEAD/tsconfig.json --------------------------------------------------------------------------------