├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── lint-on-push-pr.yml │ ├── sync-changes-to-gitlab.yml │ └── sync-changes-to-repos.yml ├── .gitignore ├── .gitlab-ci.yml ├── .husky └── pre-commit ├── LICENSE.md ├── assets ├── data │ └── app.json └── images │ ├── badges │ └── awesome │ │ └── badge.svg │ ├── buttons │ └── greasy-fork │ │ ├── help-button.svg │ │ └── install-button.svg │ ├── icons │ ├── chatgpt │ │ ├── black-on-white │ │ │ ├── icon189.png │ │ │ └── icon50.png │ │ ├── white-on-black │ │ │ ├── icon189.png │ │ │ └── icon50.png │ │ ├── white-on-blue-green │ │ │ ├── icon189.png │ │ │ └── icon50.png │ │ └── white-on-gray │ │ │ ├── icon189.png │ │ │ └── icon50.png │ ├── earth │ │ ├── black │ │ │ └── icon32.svg │ │ └── white │ │ │ └── icon32.svg │ ├── incognito │ │ ├── black │ │ │ ├── faded │ │ │ │ ├── icon128.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon244.png │ │ │ │ ├── icon32.png │ │ │ │ ├── icon48.png │ │ │ │ └── icon64.png │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon244.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon244.png │ │ │ └── icon32.png │ ├── navicon.png │ ├── openai │ │ ├── black │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ ├── sunglasses-1000.png │ ├── sunglasses-1000.svg │ ├── userscript-managers │ │ ├── orangemonkey │ │ │ ├── icon112.png │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ └── icon64.png │ │ ├── tampermonkey │ │ │ └── icon28.png │ │ └── violentmonkey │ │ │ ├── icon100.png │ │ │ └── icon25.png │ └── web-stores │ │ └── greasy-fork │ │ ├── black │ │ ├── icon25.png │ │ ├── icon50.png │ │ └── icon512.png │ │ └── white │ │ ├── icon25.png │ │ ├── icon50.png │ │ └── icon512.png │ ├── logos │ └── platforms │ │ ├── android │ │ └── head-plus-word │ │ │ ├── green-head-black-word │ │ │ ├── logo150x24.png │ │ │ └── logo3169x517.png │ │ │ └── white │ │ │ ├── logo150x24.png │ │ │ └── logo3169x517.png │ │ └── ios │ │ └── apple-plus-word │ │ ├── black │ │ ├── logo1500x708.png │ │ └── logo150x71.png │ │ └── white │ │ ├── logo1500x708.png │ │ └── logo150x71.png │ ├── screenshots │ ├── demo.png │ ├── demo.psd │ ├── desktop │ │ ├── chrome │ │ │ ├── developer-mode-toggle.png │ │ │ └── developer-mode-toggle.psd │ │ └── demo.psd │ ├── sidebar-toggle-on.png │ └── zh-cn │ │ └── desktop │ │ └── chrome │ │ ├── developer-mode-toggle.png │ │ └── developer-mode-toggle.psd │ └── separators │ └── gradient-aqua.png ├── docs ├── PRIVACY.md ├── README.md ├── SECURITY.md └── hi │ ├── LICENSE.md │ ├── PRIVACY.md │ └── SECURITY.md ├── eslint.config.mjs ├── greasemonkey ├── LICENSE.md ├── _locales │ ├── af │ │ └── messages.json │ ├── am │ │ └── messages.json │ ├── ar │ │ └── messages.json │ ├── az │ │ └── messages.json │ ├── be │ │ └── messages.json │ ├── bem │ │ └── messages.json │ ├── bg │ │ └── messages.json │ ├── bn │ │ └── messages.json │ ├── bo │ │ └── messages.json │ ├── br │ │ └── messages.json │ ├── bs │ │ └── messages.json │ ├── ca │ │ └── messages.json │ ├── ceb │ │ └── messages.json │ ├── cs │ │ └── messages.json │ ├── cy │ │ └── messages.json │ ├── da │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── dv │ │ └── messages.json │ ├── dz │ │ └── messages.json │ ├── el │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── eo │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── et │ │ └── messages.json │ ├── eu │ │ └── messages.json │ ├── fa │ │ └── messages.json │ ├── fi │ │ └── messages.json │ ├── fo │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── gd │ │ └── messages.json │ ├── gl │ │ └── messages.json │ ├── gu │ │ └── messages.json │ ├── haw │ │ └── messages.json │ ├── he │ │ └── messages.json │ ├── hi │ │ └── messages.json │ ├── hr │ │ └── messages.json │ ├── ht │ │ └── messages.json │ ├── hu │ │ └── messages.json │ ├── hy │ │ └── messages.json │ ├── id │ │ └── messages.json │ ├── is │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── ka │ │ └── messages.json │ ├── kab │ │ └── messages.json │ ├── kk │ │ └── messages.json │ ├── km │ │ └── messages.json │ ├── kn │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── ku │ │ └── messages.json │ ├── ky │ │ └── messages.json │ ├── la │ │ └── messages.json │ ├── lb │ │ └── messages.json │ ├── lo │ │ └── messages.json │ ├── lt │ │ └── messages.json │ ├── lv │ │ └── messages.json │ ├── mg │ │ └── messages.json │ ├── mi │ │ └── messages.json │ ├── mk │ │ └── messages.json │ ├── ml │ │ └── messages.json │ ├── mn │ │ └── messages.json │ ├── ms │ │ └── messages.json │ ├── mt │ │ └── messages.json │ ├── my │ │ └── messages.json │ ├── ne │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── no │ │ └── messages.json │ ├── ny │ │ └── messages.json │ ├── pa │ │ └── messages.json │ ├── pap │ │ └── messages.json │ ├── pl │ │ └── messages.json │ ├── ps │ │ └── messages.json │ ├── pt │ │ └── messages.json │ ├── ro │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── rw │ │ └── messages.json │ ├── sg │ │ └── messages.json │ ├── si │ │ └── messages.json │ ├── sk │ │ └── messages.json │ ├── sl │ │ └── messages.json │ ├── sm │ │ └── messages.json │ ├── sn │ │ └── messages.json │ ├── so │ │ └── messages.json │ ├── sr │ │ └── messages.json │ ├── sv │ │ └── messages.json │ ├── sw │ │ └── messages.json │ ├── ta │ │ └── messages.json │ ├── te │ │ └── messages.json │ ├── tg │ │ └── messages.json │ ├── th │ │ └── messages.json │ ├── ti │ │ └── messages.json │ ├── tk │ │ └── messages.json │ ├── tn │ │ └── messages.json │ ├── to │ │ └── messages.json │ ├── tpi │ │ └── messages.json │ ├── tr │ │ └── messages.json │ ├── uk │ │ └── messages.json │ ├── ur │ │ └── messages.json │ ├── uz │ │ └── messages.json │ ├── vi │ │ └── messages.json │ ├── xh │ │ └── messages.json │ ├── yi │ │ └── messages.json │ ├── zh │ │ └── messages.json │ ├── zh_CN │ │ └── messages.json │ ├── zh_HK │ │ └── messages.json │ ├── zh_SG │ │ └── messages.json │ ├── zh_TW │ │ └── messages.json │ └── zu │ │ └── messages.json ├── autoclear-chatgpt-history.user.js ├── docs │ ├── PRIVACY.md │ ├── README.md │ ├── SECURITY.md │ └── hi │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ └── SECURITY.md └── utils │ └── translate-en-messages.py └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint-on-push-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.github/workflows/lint-on-push-pr.yml -------------------------------------------------------------------------------- /.github/workflows/sync-changes-to-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.github/workflows/sync-changes-to-gitlab.yml -------------------------------------------------------------------------------- /.github/workflows/sync-changes-to-repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.github/workflows/sync-changes-to-repos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *cache 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/LICENSE.md -------------------------------------------------------------------------------- /assets/data/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/data/app.json -------------------------------------------------------------------------------- /assets/images/badges/awesome/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/badges/awesome/badge.svg -------------------------------------------------------------------------------- /assets/images/buttons/greasy-fork/help-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/buttons/greasy-fork/help-button.svg -------------------------------------------------------------------------------- /assets/images/buttons/greasy-fork/install-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/buttons/greasy-fork/install-button.svg -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/black-on-white/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/black-on-white/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/black-on-white/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/black-on-white/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/white-on-black/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/white-on-black/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/white-on-black/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/white-on-black/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/white-on-blue-green/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/white-on-blue-green/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/white-on-blue-green/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/white-on-blue-green/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/white-on-gray/icon189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/white-on-gray/icon189.png -------------------------------------------------------------------------------- /assets/images/icons/chatgpt/white-on-gray/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/chatgpt/white-on-gray/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/earth/black/icon32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/earth/black/icon32.svg -------------------------------------------------------------------------------- /assets/images/icons/earth/white/icon32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/earth/white/icon32.svg -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/faded/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/faded/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/faded/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/faded/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/faded/icon244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/faded/icon244.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/faded/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/faded/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/faded/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/faded/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/faded/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/faded/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/icon244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/icon244.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/white/icon244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/white/icon244.png -------------------------------------------------------------------------------- /assets/images/icons/incognito/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/incognito/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/navicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/navicon.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/white/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/openai/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sunglasses-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/sunglasses-1000.png -------------------------------------------------------------------------------- /assets/images/icons/sunglasses-1000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/sunglasses-1000.svg -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/orangemonkey/icon112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/orangemonkey/icon112.png -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/orangemonkey/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/orangemonkey/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/orangemonkey/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/orangemonkey/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/orangemonkey/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/orangemonkey/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/tampermonkey/icon28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/tampermonkey/icon28.png -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/violentmonkey/icon100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/violentmonkey/icon100.png -------------------------------------------------------------------------------- /assets/images/icons/userscript-managers/violentmonkey/icon25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/userscript-managers/violentmonkey/icon25.png -------------------------------------------------------------------------------- /assets/images/icons/web-stores/greasy-fork/black/icon25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/web-stores/greasy-fork/black/icon25.png -------------------------------------------------------------------------------- /assets/images/icons/web-stores/greasy-fork/black/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/web-stores/greasy-fork/black/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/web-stores/greasy-fork/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/web-stores/greasy-fork/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/web-stores/greasy-fork/white/icon25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/web-stores/greasy-fork/white/icon25.png -------------------------------------------------------------------------------- /assets/images/icons/web-stores/greasy-fork/white/icon50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/web-stores/greasy-fork/white/icon50.png -------------------------------------------------------------------------------- /assets/images/icons/web-stores/greasy-fork/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/icons/web-stores/greasy-fork/white/icon512.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/android/head-plus-word/green-head-black-word/logo150x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/android/head-plus-word/green-head-black-word/logo150x24.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/android/head-plus-word/green-head-black-word/logo3169x517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/android/head-plus-word/green-head-black-word/logo3169x517.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/android/head-plus-word/white/logo150x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/android/head-plus-word/white/logo150x24.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/android/head-plus-word/white/logo3169x517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/android/head-plus-word/white/logo3169x517.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/ios/apple-plus-word/black/logo1500x708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/ios/apple-plus-word/black/logo1500x708.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/ios/apple-plus-word/black/logo150x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/ios/apple-plus-word/black/logo150x71.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/ios/apple-plus-word/white/logo1500x708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/ios/apple-plus-word/white/logo1500x708.png -------------------------------------------------------------------------------- /assets/images/logos/platforms/ios/apple-plus-word/white/logo150x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/logos/platforms/ios/apple-plus-word/white/logo150x71.png -------------------------------------------------------------------------------- /assets/images/screenshots/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/demo.png -------------------------------------------------------------------------------- /assets/images/screenshots/demo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/demo.psd -------------------------------------------------------------------------------- /assets/images/screenshots/desktop/chrome/developer-mode-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/desktop/chrome/developer-mode-toggle.png -------------------------------------------------------------------------------- /assets/images/screenshots/desktop/chrome/developer-mode-toggle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/desktop/chrome/developer-mode-toggle.psd -------------------------------------------------------------------------------- /assets/images/screenshots/desktop/demo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/desktop/demo.psd -------------------------------------------------------------------------------- /assets/images/screenshots/sidebar-toggle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/sidebar-toggle-on.png -------------------------------------------------------------------------------- /assets/images/screenshots/zh-cn/desktop/chrome/developer-mode-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/zh-cn/desktop/chrome/developer-mode-toggle.png -------------------------------------------------------------------------------- /assets/images/screenshots/zh-cn/desktop/chrome/developer-mode-toggle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/screenshots/zh-cn/desktop/chrome/developer-mode-toggle.psd -------------------------------------------------------------------------------- /assets/images/separators/gradient-aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/assets/images/separators/gradient-aqua.png -------------------------------------------------------------------------------- /docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/docs/PRIVACY.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /greasemonkey/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/LICENSE.md -------------------------------------------------------------------------------- /greasemonkey/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/af/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/am/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ar/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/az/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/be/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/bem/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/bem/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/bg/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/bn/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/bo/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/br/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/br/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/bs/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ca/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ceb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ceb/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/cs/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/cy/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/da/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/de/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/dv/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/dz/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/el/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/en/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/eo/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/es/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/et/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/eu/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/fa/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/fi/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/fo/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/fr/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/gd/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/gl/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/gu/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/haw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/haw/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/he/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/hi/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/hr/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ht/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/hu/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/hy/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/id/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/is/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/it/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ja/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ka/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/kab/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/kab/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/kk/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/km/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/kn/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ko/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ku/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ky/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/la/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/lb/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/lo/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/lt/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/lv/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/mg/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/mi/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/mk/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ml/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/mn/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ms/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/mt/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/my/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ne/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/nl/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/no/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ny/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/pa/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/pap/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/pap/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/pl/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ps/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ps/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/pt/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ro/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ru/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/rw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/rw/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sg/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/si/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/si/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sk/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sl/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sm/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sm/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sn/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/so/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/so/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sr/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sv/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/sw/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ta/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/te/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/tg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/tg/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/th/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ti/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ti/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/tk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/tk/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/tn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/tn/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/to/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/to/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/tpi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/tpi/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/tr/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/uk/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/ur/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/ur/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/uz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/uz/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/vi/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/xh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/xh/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/yi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/yi/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/zh/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/zh_HK/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/zh_HK/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/zh_SG/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/zh_SG/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /greasemonkey/_locales/zu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/_locales/zu/messages.json -------------------------------------------------------------------------------- /greasemonkey/autoclear-chatgpt-history.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/autoclear-chatgpt-history.user.js -------------------------------------------------------------------------------- /greasemonkey/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/docs/PRIVACY.md -------------------------------------------------------------------------------- /greasemonkey/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/docs/README.md -------------------------------------------------------------------------------- /greasemonkey/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/docs/SECURITY.md -------------------------------------------------------------------------------- /greasemonkey/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /greasemonkey/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /greasemonkey/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /greasemonkey/utils/translate-en-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/greasemonkey/utils/translate-en-messages.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/autoclear-chatgpt-history/HEAD/package.json --------------------------------------------------------------------------------