├── .env ├── .gitignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── chat.html ├── dev.html ├── docs ├── app.csv ├── assets │ ├── 1280x800_1.png │ ├── 1280x800_2.png │ ├── 1280x800_3.png │ ├── ai-sidebar.mp4 │ ├── ai-sidebar.mp4.jpg │ ├── available_in_the_chrome_web_store.png │ ├── edge_get_the_add_on.svg │ ├── en-1280x800_1.png │ ├── en-1280x800_2.png │ ├── en-1280x800_3.png │ ├── mini-window.mp4 │ ├── mini-window.mp4.jpg │ ├── pin-open.mp4 │ └── pin-open.mp4.jpg ├── ext.csv ├── report │ └── meta.json └── todo.local.md ├── env.d.ts ├── esbuild.mjs ├── guide.html ├── offscreen.html ├── package.json ├── popup.html ├── postcss.config.mjs ├── public ├── _locales │ ├── am │ │ └── messages.json │ ├── ar │ │ └── messages.json │ ├── bg │ │ └── messages.json │ ├── bn │ │ └── messages.json │ ├── ca │ │ └── messages.json │ ├── cs │ │ └── messages.json │ ├── da │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── el │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── en_AU │ │ └── messages.json │ ├── en_GB │ │ └── messages.json │ ├── en_US │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── es_419 │ │ └── messages.json │ ├── et │ │ └── messages.json │ ├── fa │ │ └── messages.json │ ├── fi │ │ └── messages.json │ ├── fil │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── gu │ │ └── messages.json │ ├── he │ │ └── messages.json │ ├── hi │ │ └── messages.json │ ├── hr │ │ └── messages.json │ ├── hu │ │ └── messages.json │ ├── id │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── kn │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── lt │ │ └── messages.json │ ├── lv │ │ └── messages.json │ ├── ml │ │ └── messages.json │ ├── mr │ │ └── messages.json │ ├── ms │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── no │ │ └── messages.json │ ├── pl │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ ├── pt_PT │ │ └── messages.json │ ├── ro │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── sk │ │ └── messages.json │ ├── sl │ │ └── messages.json │ ├── sr │ │ └── messages.json │ ├── sv │ │ └── messages.json │ ├── sw │ │ └── messages.json │ ├── ta │ │ └── messages.json │ ├── te │ │ └── messages.json │ ├── th │ │ └── messages.json │ ├── tr │ │ └── messages.json │ ├── uk │ │ └── messages.json │ ├── vi │ │ └── messages.json │ ├── zh_CN │ │ └── messages.json │ └── zh_TW │ │ └── messages.json ├── favicon.ico ├── img │ ├── bing.svg │ ├── globe.svg │ └── google.svg ├── logo.png └── logo.svg ├── sidebar.html ├── src ├── assets │ ├── base.css │ ├── config.json │ ├── main.css │ ├── pdf.worker.ts │ └── utilities.css ├── bg │ ├── index.ts │ ├── offscreen.ts │ └── sidebar.ts ├── components │ ├── LoadingBar.vue │ ├── Multitasking.vue │ ├── PipLauncher.vue │ ├── PipSplash.vue │ ├── ScrollView.vue │ ├── Search.vue │ ├── SiteButton.vue │ ├── Template.vue │ ├── Webview.vue │ ├── chatdocs │ │ ├── ChatDocsAddon.vue │ │ ├── ChatDocsPanel.vue │ │ ├── DocInput.vue │ │ ├── DocItem.vue │ │ └── helper.ts │ ├── icons │ │ ├── IconAdd.vue │ │ ├── IconAmpStories.vue │ │ ├── IconArrowBack.vue │ │ ├── IconArrowBackIosNew.vue │ │ ├── IconArrowCircleRight.vue │ │ ├── IconArrowForwardIos.vue │ │ ├── IconArrowRight.vue │ │ ├── IconClose.vue │ │ ├── IconCommunity.vue │ │ ├── IconDiscord.vue │ │ ├── IconDockToLeft.vue │ │ ├── IconDocumentation.vue │ │ ├── IconEcosystem.vue │ │ ├── IconEdit.vue │ │ ├── IconGithub.vue │ │ ├── IconGlobe.vue │ │ ├── IconGppMaybe.vue │ │ ├── IconHelp.vue │ │ ├── IconHide.vue │ │ ├── IconHome.vue │ │ ├── IconKeyboard.vue │ │ ├── IconLogo.vue │ │ ├── IconMenu.vue │ │ ├── IconMinimize.vue │ │ ├── IconNavigateBefore.vue │ │ ├── IconNavigateNext.vue │ │ ├── IconNoteStack.vue │ │ ├── IconNoteStackAdd.vue │ │ ├── IconPause.vue │ │ ├── IconPhone.vue │ │ ├── IconPlayCircle.vue │ │ ├── IconProgressActivity.vue │ │ ├── IconRefresh.vue │ │ ├── IconSearch.vue │ │ ├── IconSplitscreenRight.vue │ │ ├── IconSupport.vue │ │ ├── IconThumbDown.vue │ │ ├── IconThumbUp.vue │ │ ├── IconTooling.vue │ │ └── IconXLogo.vue │ ├── popup │ │ └── PipWindowActions.vue │ └── sidebar │ │ ├── ContentSidebar.vue │ │ ├── ContentSidebarAddon.vue │ │ ├── Navbar.vue │ │ ├── PageScrollbar.vue │ │ └── SidebarHome.vue ├── content │ ├── App.vue │ ├── Copilot.vue │ ├── event.ts │ ├── index.ts │ ├── main.ts │ ├── pip.ts │ └── ui.ts ├── locales │ ├── am.json │ ├── ar.json │ ├── bg.json │ ├── bn.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── es-419.json │ ├── es.json │ ├── et.json │ ├── fa.json │ ├── fi.json │ ├── fil.json │ ├── fr.json │ ├── gu.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hu.json │ ├── id.json │ ├── it.json │ ├── ja.json │ ├── kn.json │ ├── ko.json │ ├── lt.json │ ├── lv.json │ ├── ml.json │ ├── mr.json │ ├── ms.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt-PT.json │ ├── ro.json │ ├── ru.json │ ├── sk.json │ ├── sl.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── ta.json │ ├── te.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh-CN.json │ └── zh-TW.json ├── manifest.ts ├── pages │ ├── Chat.vue │ ├── Dev.vue │ ├── Guide.vue │ ├── Popup.vue │ ├── Sidebar.vue │ ├── chat.ts │ ├── dev.ts │ ├── guide.ts │ ├── offscreen.ts │ ├── popup.ts │ └── sidebar.ts ├── store │ ├── content.ts │ └── popup.ts ├── types │ ├── extension.ts │ ├── index.ts │ └── pip.ts └── utils │ ├── VNode.ts │ ├── const.ts │ ├── dom.ts │ ├── ext.ts │ ├── file.ts │ ├── i18n.ts │ ├── invoke │ ├── Invoke.ts │ ├── MessageInvoke.ts │ ├── WebviewInvoke.ts │ └── index.ts │ ├── pdf.ts │ └── utils.ts ├── tailwind.config.mjs ├── tests └── unit │ ├── generative-ai.pdf │ ├── pdf.spec.ts │ └── utils.spec.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── utils ├── i18ncsv.py ├── manifest-plugin.ts ├── webstore.js └── zip.js └── vite.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/README.md -------------------------------------------------------------------------------- /chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/chat.html -------------------------------------------------------------------------------- /dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/dev.html -------------------------------------------------------------------------------- /docs/app.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/app.csv -------------------------------------------------------------------------------- /docs/assets/1280x800_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/1280x800_1.png -------------------------------------------------------------------------------- /docs/assets/1280x800_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/1280x800_2.png -------------------------------------------------------------------------------- /docs/assets/1280x800_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/1280x800_3.png -------------------------------------------------------------------------------- /docs/assets/ai-sidebar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/ai-sidebar.mp4 -------------------------------------------------------------------------------- /docs/assets/ai-sidebar.mp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/ai-sidebar.mp4.jpg -------------------------------------------------------------------------------- /docs/assets/available_in_the_chrome_web_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/available_in_the_chrome_web_store.png -------------------------------------------------------------------------------- /docs/assets/edge_get_the_add_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/edge_get_the_add_on.svg -------------------------------------------------------------------------------- /docs/assets/en-1280x800_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/en-1280x800_1.png -------------------------------------------------------------------------------- /docs/assets/en-1280x800_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/en-1280x800_2.png -------------------------------------------------------------------------------- /docs/assets/en-1280x800_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/en-1280x800_3.png -------------------------------------------------------------------------------- /docs/assets/mini-window.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/mini-window.mp4 -------------------------------------------------------------------------------- /docs/assets/mini-window.mp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/mini-window.mp4.jpg -------------------------------------------------------------------------------- /docs/assets/pin-open.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/pin-open.mp4 -------------------------------------------------------------------------------- /docs/assets/pin-open.mp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/assets/pin-open.mp4.jpg -------------------------------------------------------------------------------- /docs/ext.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/ext.csv -------------------------------------------------------------------------------- /docs/report/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/report/meta.json -------------------------------------------------------------------------------- /docs/todo.local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/docs/todo.local.md -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/env.d.ts -------------------------------------------------------------------------------- /esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/esbuild.mjs -------------------------------------------------------------------------------- /guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/guide.html -------------------------------------------------------------------------------- /offscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/offscreen.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/package.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/popup.html -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/am/messages.json -------------------------------------------------------------------------------- /public/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ar/messages.json -------------------------------------------------------------------------------- /public/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/bg/messages.json -------------------------------------------------------------------------------- /public/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/bn/messages.json -------------------------------------------------------------------------------- /public/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ca/messages.json -------------------------------------------------------------------------------- /public/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/cs/messages.json -------------------------------------------------------------------------------- /public/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/da/messages.json -------------------------------------------------------------------------------- /public/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/de/messages.json -------------------------------------------------------------------------------- /public/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/el/messages.json -------------------------------------------------------------------------------- /public/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/en/messages.json -------------------------------------------------------------------------------- /public/_locales/en_AU/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/en_AU/messages.json -------------------------------------------------------------------------------- /public/_locales/en_GB/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/en_GB/messages.json -------------------------------------------------------------------------------- /public/_locales/en_US/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/en_US/messages.json -------------------------------------------------------------------------------- /public/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/es/messages.json -------------------------------------------------------------------------------- /public/_locales/es_419/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/es_419/messages.json -------------------------------------------------------------------------------- /public/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/et/messages.json -------------------------------------------------------------------------------- /public/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/fa/messages.json -------------------------------------------------------------------------------- /public/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/fi/messages.json -------------------------------------------------------------------------------- /public/_locales/fil/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/fil/messages.json -------------------------------------------------------------------------------- /public/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/fr/messages.json -------------------------------------------------------------------------------- /public/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/gu/messages.json -------------------------------------------------------------------------------- /public/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/he/messages.json -------------------------------------------------------------------------------- /public/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/hi/messages.json -------------------------------------------------------------------------------- /public/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/hr/messages.json -------------------------------------------------------------------------------- /public/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/hu/messages.json -------------------------------------------------------------------------------- /public/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/id/messages.json -------------------------------------------------------------------------------- /public/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/it/messages.json -------------------------------------------------------------------------------- /public/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ja/messages.json -------------------------------------------------------------------------------- /public/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/kn/messages.json -------------------------------------------------------------------------------- /public/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ko/messages.json -------------------------------------------------------------------------------- /public/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/lt/messages.json -------------------------------------------------------------------------------- /public/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/lv/messages.json -------------------------------------------------------------------------------- /public/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ml/messages.json -------------------------------------------------------------------------------- /public/_locales/mr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/mr/messages.json -------------------------------------------------------------------------------- /public/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ms/messages.json -------------------------------------------------------------------------------- /public/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/nl/messages.json -------------------------------------------------------------------------------- /public/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/no/messages.json -------------------------------------------------------------------------------- /public/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/pl/messages.json -------------------------------------------------------------------------------- /public/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /public/_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/pt_PT/messages.json -------------------------------------------------------------------------------- /public/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ro/messages.json -------------------------------------------------------------------------------- /public/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ru/messages.json -------------------------------------------------------------------------------- /public/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/sk/messages.json -------------------------------------------------------------------------------- /public/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/sl/messages.json -------------------------------------------------------------------------------- /public/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/sr/messages.json -------------------------------------------------------------------------------- /public/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/sv/messages.json -------------------------------------------------------------------------------- /public/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/sw/messages.json -------------------------------------------------------------------------------- /public/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/ta/messages.json -------------------------------------------------------------------------------- /public/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/te/messages.json -------------------------------------------------------------------------------- /public/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/th/messages.json -------------------------------------------------------------------------------- /public/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/tr/messages.json -------------------------------------------------------------------------------- /public/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/uk/messages.json -------------------------------------------------------------------------------- /public/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/vi/messages.json -------------------------------------------------------------------------------- /public/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /public/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/img/bing.svg -------------------------------------------------------------------------------- /public/img/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/img/globe.svg -------------------------------------------------------------------------------- /public/img/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/img/google.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/public/logo.svg -------------------------------------------------------------------------------- /sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/sidebar.html -------------------------------------------------------------------------------- /src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/assets/base.css -------------------------------------------------------------------------------- /src/assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/assets/config.json -------------------------------------------------------------------------------- /src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/assets/main.css -------------------------------------------------------------------------------- /src/assets/pdf.worker.ts: -------------------------------------------------------------------------------- 1 | import "pdfjs-dist/build/pdf.worker.mjs" 2 | -------------------------------------------------------------------------------- /src/assets/utilities.css: -------------------------------------------------------------------------------- 1 | @layer utilities { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/bg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/bg/index.ts -------------------------------------------------------------------------------- /src/bg/offscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/bg/offscreen.ts -------------------------------------------------------------------------------- /src/bg/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/bg/sidebar.ts -------------------------------------------------------------------------------- /src/components/LoadingBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/LoadingBar.vue -------------------------------------------------------------------------------- /src/components/Multitasking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/Multitasking.vue -------------------------------------------------------------------------------- /src/components/PipLauncher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/PipLauncher.vue -------------------------------------------------------------------------------- /src/components/PipSplash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/PipSplash.vue -------------------------------------------------------------------------------- /src/components/ScrollView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/ScrollView.vue -------------------------------------------------------------------------------- /src/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/Search.vue -------------------------------------------------------------------------------- /src/components/SiteButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/SiteButton.vue -------------------------------------------------------------------------------- /src/components/Template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/Template.vue -------------------------------------------------------------------------------- /src/components/Webview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/Webview.vue -------------------------------------------------------------------------------- /src/components/chatdocs/ChatDocsAddon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/chatdocs/ChatDocsAddon.vue -------------------------------------------------------------------------------- /src/components/chatdocs/ChatDocsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/chatdocs/ChatDocsPanel.vue -------------------------------------------------------------------------------- /src/components/chatdocs/DocInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/chatdocs/DocInput.vue -------------------------------------------------------------------------------- /src/components/chatdocs/DocItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/chatdocs/DocItem.vue -------------------------------------------------------------------------------- /src/components/chatdocs/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/chatdocs/helper.ts -------------------------------------------------------------------------------- /src/components/icons/IconAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconAdd.vue -------------------------------------------------------------------------------- /src/components/icons/IconAmpStories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconAmpStories.vue -------------------------------------------------------------------------------- /src/components/icons/IconArrowBack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconArrowBack.vue -------------------------------------------------------------------------------- /src/components/icons/IconArrowBackIosNew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconArrowBackIosNew.vue -------------------------------------------------------------------------------- /src/components/icons/IconArrowCircleRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconArrowCircleRight.vue -------------------------------------------------------------------------------- /src/components/icons/IconArrowForwardIos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconArrowForwardIos.vue -------------------------------------------------------------------------------- /src/components/icons/IconArrowRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconArrowRight.vue -------------------------------------------------------------------------------- /src/components/icons/IconClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconClose.vue -------------------------------------------------------------------------------- /src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconCommunity.vue -------------------------------------------------------------------------------- /src/components/icons/IconDiscord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconDiscord.vue -------------------------------------------------------------------------------- /src/components/icons/IconDockToLeft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconDockToLeft.vue -------------------------------------------------------------------------------- /src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconDocumentation.vue -------------------------------------------------------------------------------- /src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconEcosystem.vue -------------------------------------------------------------------------------- /src/components/icons/IconEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconEdit.vue -------------------------------------------------------------------------------- /src/components/icons/IconGithub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconGithub.vue -------------------------------------------------------------------------------- /src/components/icons/IconGlobe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconGlobe.vue -------------------------------------------------------------------------------- /src/components/icons/IconGppMaybe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconGppMaybe.vue -------------------------------------------------------------------------------- /src/components/icons/IconHelp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconHelp.vue -------------------------------------------------------------------------------- /src/components/icons/IconHide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconHide.vue -------------------------------------------------------------------------------- /src/components/icons/IconHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconHome.vue -------------------------------------------------------------------------------- /src/components/icons/IconKeyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconKeyboard.vue -------------------------------------------------------------------------------- /src/components/icons/IconLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconLogo.vue -------------------------------------------------------------------------------- /src/components/icons/IconMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconMenu.vue -------------------------------------------------------------------------------- /src/components/icons/IconMinimize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconMinimize.vue -------------------------------------------------------------------------------- /src/components/icons/IconNavigateBefore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconNavigateBefore.vue -------------------------------------------------------------------------------- /src/components/icons/IconNavigateNext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconNavigateNext.vue -------------------------------------------------------------------------------- /src/components/icons/IconNoteStack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconNoteStack.vue -------------------------------------------------------------------------------- /src/components/icons/IconNoteStackAdd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconNoteStackAdd.vue -------------------------------------------------------------------------------- /src/components/icons/IconPause.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconPause.vue -------------------------------------------------------------------------------- /src/components/icons/IconPhone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconPhone.vue -------------------------------------------------------------------------------- /src/components/icons/IconPlayCircle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconPlayCircle.vue -------------------------------------------------------------------------------- /src/components/icons/IconProgressActivity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconProgressActivity.vue -------------------------------------------------------------------------------- /src/components/icons/IconRefresh.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconRefresh.vue -------------------------------------------------------------------------------- /src/components/icons/IconSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconSearch.vue -------------------------------------------------------------------------------- /src/components/icons/IconSplitscreenRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconSplitscreenRight.vue -------------------------------------------------------------------------------- /src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconSupport.vue -------------------------------------------------------------------------------- /src/components/icons/IconThumbDown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconThumbDown.vue -------------------------------------------------------------------------------- /src/components/icons/IconThumbUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconThumbUp.vue -------------------------------------------------------------------------------- /src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconTooling.vue -------------------------------------------------------------------------------- /src/components/icons/IconXLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/icons/IconXLogo.vue -------------------------------------------------------------------------------- /src/components/popup/PipWindowActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/popup/PipWindowActions.vue -------------------------------------------------------------------------------- /src/components/sidebar/ContentSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/sidebar/ContentSidebar.vue -------------------------------------------------------------------------------- /src/components/sidebar/ContentSidebarAddon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/sidebar/ContentSidebarAddon.vue -------------------------------------------------------------------------------- /src/components/sidebar/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/sidebar/Navbar.vue -------------------------------------------------------------------------------- /src/components/sidebar/PageScrollbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/sidebar/PageScrollbar.vue -------------------------------------------------------------------------------- /src/components/sidebar/SidebarHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/components/sidebar/SidebarHome.vue -------------------------------------------------------------------------------- /src/content/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/App.vue -------------------------------------------------------------------------------- /src/content/Copilot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/Copilot.vue -------------------------------------------------------------------------------- /src/content/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/event.ts -------------------------------------------------------------------------------- /src/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/index.ts -------------------------------------------------------------------------------- /src/content/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/main.ts -------------------------------------------------------------------------------- /src/content/pip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/pip.ts -------------------------------------------------------------------------------- /src/content/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/content/ui.ts -------------------------------------------------------------------------------- /src/locales/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/am.json -------------------------------------------------------------------------------- /src/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ar.json -------------------------------------------------------------------------------- /src/locales/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/bg.json -------------------------------------------------------------------------------- /src/locales/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/bn.json -------------------------------------------------------------------------------- /src/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ca.json -------------------------------------------------------------------------------- /src/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/cs.json -------------------------------------------------------------------------------- /src/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/da.json -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/el.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/es-419.json -------------------------------------------------------------------------------- /src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/es.json -------------------------------------------------------------------------------- /src/locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/et.json -------------------------------------------------------------------------------- /src/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/fa.json -------------------------------------------------------------------------------- /src/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/fi.json -------------------------------------------------------------------------------- /src/locales/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/fil.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/locales/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/gu.json -------------------------------------------------------------------------------- /src/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/he.json -------------------------------------------------------------------------------- /src/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/hi.json -------------------------------------------------------------------------------- /src/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/hr.json -------------------------------------------------------------------------------- /src/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/hu.json -------------------------------------------------------------------------------- /src/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/id.json -------------------------------------------------------------------------------- /src/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/it.json -------------------------------------------------------------------------------- /src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ja.json -------------------------------------------------------------------------------- /src/locales/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/kn.json -------------------------------------------------------------------------------- /src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ko.json -------------------------------------------------------------------------------- /src/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/lt.json -------------------------------------------------------------------------------- /src/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/lv.json -------------------------------------------------------------------------------- /src/locales/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ml.json -------------------------------------------------------------------------------- /src/locales/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/mr.json -------------------------------------------------------------------------------- /src/locales/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ms.json -------------------------------------------------------------------------------- /src/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/nl.json -------------------------------------------------------------------------------- /src/locales/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/no.json -------------------------------------------------------------------------------- /src/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/pl.json -------------------------------------------------------------------------------- /src/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/pt-BR.json -------------------------------------------------------------------------------- /src/locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/pt-PT.json -------------------------------------------------------------------------------- /src/locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ro.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/sk.json -------------------------------------------------------------------------------- /src/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/sl.json -------------------------------------------------------------------------------- /src/locales/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/sr.json -------------------------------------------------------------------------------- /src/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/sv.json -------------------------------------------------------------------------------- /src/locales/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/sw.json -------------------------------------------------------------------------------- /src/locales/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/ta.json -------------------------------------------------------------------------------- /src/locales/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/te.json -------------------------------------------------------------------------------- /src/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/th.json -------------------------------------------------------------------------------- /src/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/tr.json -------------------------------------------------------------------------------- /src/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/uk.json -------------------------------------------------------------------------------- /src/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/vi.json -------------------------------------------------------------------------------- /src/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/zh-CN.json -------------------------------------------------------------------------------- /src/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/locales/zh-TW.json -------------------------------------------------------------------------------- /src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/manifest.ts -------------------------------------------------------------------------------- /src/pages/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/Chat.vue -------------------------------------------------------------------------------- /src/pages/Dev.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/Dev.vue -------------------------------------------------------------------------------- /src/pages/Guide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/Guide.vue -------------------------------------------------------------------------------- /src/pages/Popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/Popup.vue -------------------------------------------------------------------------------- /src/pages/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/Sidebar.vue -------------------------------------------------------------------------------- /src/pages/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/chat.ts -------------------------------------------------------------------------------- /src/pages/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/dev.ts -------------------------------------------------------------------------------- /src/pages/guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/guide.ts -------------------------------------------------------------------------------- /src/pages/offscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/offscreen.ts -------------------------------------------------------------------------------- /src/pages/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/popup.ts -------------------------------------------------------------------------------- /src/pages/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/pages/sidebar.ts -------------------------------------------------------------------------------- /src/store/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/store/content.ts -------------------------------------------------------------------------------- /src/store/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/store/popup.ts -------------------------------------------------------------------------------- /src/types/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/types/extension.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/pip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/types/pip.ts -------------------------------------------------------------------------------- /src/utils/VNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/VNode.ts -------------------------------------------------------------------------------- /src/utils/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/const.ts -------------------------------------------------------------------------------- /src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/dom.ts -------------------------------------------------------------------------------- /src/utils/ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/ext.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/invoke/Invoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/invoke/Invoke.ts -------------------------------------------------------------------------------- /src/utils/invoke/MessageInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/invoke/MessageInvoke.ts -------------------------------------------------------------------------------- /src/utils/invoke/WebviewInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/invoke/WebviewInvoke.ts -------------------------------------------------------------------------------- /src/utils/invoke/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/invoke/index.ts -------------------------------------------------------------------------------- /src/utils/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/pdf.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tests/unit/generative-ai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tests/unit/generative-ai.pdf -------------------------------------------------------------------------------- /tests/unit/pdf.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tests/unit/pdf.spec.ts -------------------------------------------------------------------------------- /tests/unit/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tests/unit/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /utils/i18ncsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/utils/i18ncsv.py -------------------------------------------------------------------------------- /utils/manifest-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/utils/manifest-plugin.ts -------------------------------------------------------------------------------- /utils/webstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/utils/webstore.js -------------------------------------------------------------------------------- /utils/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/utils/zip.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baotlake/anything-copilot/HEAD/vite.config.ts --------------------------------------------------------------------------------