├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── lint-on-push-pr.yml │ ├── sync-amazongpt-changes-to-repos.yml │ ├── sync-autoclear-chatgpt-history-changes-to-repos.yml │ ├── sync-bravegpt-changes-to-repos.yml │ ├── sync-bump-script-changes-to-ai-web.yml │ ├── sync-changes-to-gitlab.yml │ ├── sync-chatgpt-auto-continue-changes-to-repos.yml │ ├── sync-chatgpt-auto-refresh-changes-to-repos.yml │ ├── sync-chatgpt-auto-talk-changes-to-repos.yml │ ├── sync-chatgpt-infinity-changes-to-repos.yml │ ├── sync-chatgpt-widescreen-changes-to-repos.yml │ ├── sync-duckduckgpt-changes-to-repos.yml │ ├── sync-github-star-history-changes-to-repos.yml │ ├── sync-github-widescreen-changes-to-repos.yml │ ├── sync-googlegpt-changes-to-repos.yml │ ├── sync-youtube-classic-changes-to-repos.yml │ ├── update-chatgpt-usercount-jsd-shields-weekly.yml │ └── update-root-usercount-jsd-shields-weekly.yml ├── .gitignore ├── .gitlab-ci.yml ├── .husky └── pre-commit ├── LICENSE.md ├── README.md ├── assets └── images │ ├── buttons │ └── greasy-fork │ │ ├── help-button.svg │ │ └── install-button.svg │ ├── icons │ ├── earth │ │ ├── black │ │ │ └── icon32.svg │ │ └── white │ │ │ └── icon32.svg │ ├── openai │ │ ├── black │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ └── white │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ └── sites │ │ ├── github │ │ └── icon32.png │ │ └── quora │ │ ├── icon128.png │ │ ├── icon16.png │ │ ├── icon256.png │ │ ├── icon32.png │ │ ├── icon48.png │ │ ├── icon512.png │ │ └── icon64.png │ └── separators │ └── gradient-aqua.png ├── block-quora-poe ├── LICENSE.md ├── README.md ├── assets │ └── images │ │ └── screenshots │ │ └── demo.png ├── block-quora-poe.user.js └── docs │ ├── SECURITY.md │ └── zh-cn │ ├── LICENSE.md │ └── SECURITY.md ├── chatgpt ├── LICENSE.md ├── amazongpt │ ├── 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 │ │ ├── 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 │ ├── amazongpt.user.js │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ └── SECURITY.md │ └── utils │ │ └── translate-en-messages.py ├── autoclear-chatgpt-history │ ├── 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 ├── bravegpt │ ├── 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 │ │ ├── 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 │ ├── bravegpt.user.js │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── hi │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ │ └── zh-cn │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ └── utils │ │ └── translate-en-messages.py ├── chatgpt-auto-continue │ ├── LICENSE.md │ ├── chatgpt-auto-continue.user.js │ └── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ └── zh-cn │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ ├── README.md │ │ └── SECURITY.md ├── chatgpt-auto-refresh │ ├── 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 │ │ ├── mr │ │ │ └── messages.json │ │ ├── ms │ │ │ └── messages.json │ │ ├── mt │ │ │ └── messages.json │ │ ├── my │ │ │ └── messages.json │ │ ├── ne │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── no │ │ │ └── messages.json │ │ ├── ny │ │ │ └── messages.json │ │ ├── or │ │ │ └── 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 │ ├── chatgpt-auto-refresh.user.js │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── hi │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ │ ├── ja │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ ├── README.md │ │ │ └── SECURITY.md │ │ └── zh-cn │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ ├── README.md │ │ │ └── SECURITY.md │ └── utils │ │ └── translate-en-messages.py ├── chatgpt-auto-talk │ ├── 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 │ │ ├── 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 │ ├── chatgpt-auto-talk.user.js │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ └── zh-cn │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ ├── README.md │ │ │ └── SECURITY.md │ └── utils │ │ └── translate-en-messages.py ├── chatgpt-infinity │ ├── LICENSE.md │ ├── chatgpt-infinity.user.js │ └── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── hi │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ └── SECURITY.md │ │ ├── ja │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ └── SECURITY.md │ │ └── zh-cn │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ └── SECURITY.md ├── chatgpt-widescreen │ ├── LICENSE.md │ ├── chatgpt-widescreen-mode.user.js │ └── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── hi │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ └── SECURITY.md │ │ └── zh-cn │ │ ├── LICENSE.md │ │ ├── PRIVACY.md │ │ └── SECURITY.md ├── docs │ ├── README.md │ ├── SECURITY.md │ └── zh-cn │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── SECURITY.md ├── duckduckgpt │ ├── 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 │ │ ├── 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 │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── hi │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ │ └── zh-cn │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ ├── duckduckgpt.user.js │ └── utils │ │ └── translate-en-messages.py ├── googlegpt │ ├── 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 │ │ ├── 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 │ │ ├── rn │ │ │ └── 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 │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── hi │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ │ └── zh-cn │ │ │ ├── LICENSE.md │ │ │ ├── PRIVACY.md │ │ │ └── SECURITY.md │ ├── googlegpt.user.js │ └── utils │ │ └── translate-en-messages.py └── media │ └── icons │ ├── openai-favicon48.png │ ├── openai-favicon64.png │ ├── robot-emoji-16.png │ ├── robot-emoji-320.png │ ├── robot-emoji-48.png │ └── robot-emoji-64.png ├── docs ├── SECURITY.md └── zh-cn │ ├── LICENSE.md │ ├── README.md │ └── SECURITY.md ├── eslint.config.mjs ├── github ├── LICENSE.md ├── docs │ ├── README.md │ ├── SECURITY.md │ └── zh-cn │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── SECURITY.md ├── github-star-history │ ├── LICENSE.md │ ├── docs │ │ ├── PRIVACY.md │ │ ├── README.md │ │ └── SECURITY.md │ └── github-star-history.user.js └── github-widescreen │ ├── LICENSE.md │ ├── docs │ ├── PRIVACY.md │ ├── README.md │ └── SECURITY.md │ └── github-widescreen.user.js ├── hide-forum-images ├── LICENSE.md ├── assets │ └── images │ │ └── icons │ │ └── private-eye │ │ ├── black │ │ ├── icon32.png │ │ ├── icon48.png │ │ ├── icon64.png │ │ └── icon980.png │ │ └── white │ │ ├── icon32.png │ │ ├── icon48.png │ │ ├── icon64.png │ │ └── icon980.png ├── docs │ ├── README.md │ └── SECURITY.md └── hide-forum-images.user.js ├── highlight-radio-bubbles ├── LICENSE.md ├── assets │ └── images │ │ └── icons │ │ └── radio-bubble │ │ ├── icon32.png │ │ ├── icon420.png │ │ ├── icon48.png │ │ └── icon64.png ├── docs │ ├── README.md │ └── SECURITY.md └── highlight-radio-bubbles.user.js ├── package.json ├── utils └── bump │ ├── chatbots.js │ └── resources.js └── youtube-classic ├── LICENSE.md ├── docs ├── README.md └── SECURITY.md └── youtube-classic.user.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint-on-push-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/workflows/lint-on-push-pr.yml -------------------------------------------------------------------------------- /.github/workflows/sync-amazongpt-changes-to-repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/workflows/sync-amazongpt-changes-to-repos.yml -------------------------------------------------------------------------------- /.github/workflows/sync-bravegpt-changes-to-repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/workflows/sync-bravegpt-changes-to-repos.yml -------------------------------------------------------------------------------- /.github/workflows/sync-changes-to-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/workflows/sync-changes-to-gitlab.yml -------------------------------------------------------------------------------- /.github/workflows/sync-googlegpt-changes-to-repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.github/workflows/sync-googlegpt-changes-to-repos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *cache 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/buttons/greasy-fork/help-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/buttons/greasy-fork/help-button.svg -------------------------------------------------------------------------------- /assets/images/buttons/greasy-fork/install-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/buttons/greasy-fork/install-button.svg -------------------------------------------------------------------------------- /assets/images/icons/earth/black/icon32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/earth/black/icon32.svg -------------------------------------------------------------------------------- /assets/images/icons/earth/white/icon32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/earth/white/icon32.svg -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/black/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/black/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/black/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/black/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/openai/black/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/black/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/white/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/white/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/white/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/white/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/openai/white/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/openai/white/icon64.png -------------------------------------------------------------------------------- /assets/images/icons/sites/github/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/github/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon128.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon16.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon256.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon32.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon48.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon512.png -------------------------------------------------------------------------------- /assets/images/icons/sites/quora/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/icons/sites/quora/icon64.png -------------------------------------------------------------------------------- /assets/images/separators/gradient-aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/assets/images/separators/gradient-aqua.png -------------------------------------------------------------------------------- /block-quora-poe/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/LICENSE.md -------------------------------------------------------------------------------- /block-quora-poe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/README.md -------------------------------------------------------------------------------- /block-quora-poe/assets/images/screenshots/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/assets/images/screenshots/demo.png -------------------------------------------------------------------------------- /block-quora-poe/block-quora-poe.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/block-quora-poe.user.js -------------------------------------------------------------------------------- /block-quora-poe/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/docs/SECURITY.md -------------------------------------------------------------------------------- /block-quora-poe/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /block-quora-poe/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/block-quora-poe/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/amazongpt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/af/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/am/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ar/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/az/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/be/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/bem/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/bem/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/bg/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/bn/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/bo/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/bs/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ca/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ceb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ceb/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/cs/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/cy/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/da/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/de/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/dv/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/dz/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/el/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/en/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/eo/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/es/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/et/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/eu/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/fa/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/fi/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/fo/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/fr/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/gd/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/gl/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/gu/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/haw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/haw/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/he/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/hi/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/hr/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ht/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/hu/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/hy/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/id/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/is/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/it/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ja/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ka/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/kab/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/kab/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/kk/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/km/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/kn/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ko/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ku/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ky/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/la/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/lb/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/lo/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/lt/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/lv/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/mg/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/mi/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/mk/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ml/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/mn/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ms/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/mt/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/my/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ne/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/nl/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/no/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ny/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/pa/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/pap/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/pap/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/pl/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ps/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ps/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/pt/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ro/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ru/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/rw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/rw/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sg/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/si/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/si/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sk/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sl/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sm/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sm/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sn/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/so/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/so/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sr/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sv/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/sw/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ta/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/te/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/tg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/tg/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/th/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ti/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ti/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/tk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/tk/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/tn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/tn/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/to/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/to/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/tpi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/tpi/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/tr/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/uk/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/ur/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/ur/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/uz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/uz/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/vi/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/xh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/xh/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/yi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/yi/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/zh/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/zh_HK/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/zh_HK/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/zh_SG/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/zh_SG/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/_locales/zu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/_locales/zu/messages.json -------------------------------------------------------------------------------- /chatgpt/amazongpt/amazongpt.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/amazongpt.user.js -------------------------------------------------------------------------------- /chatgpt/amazongpt/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/amazongpt/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/docs/README.md -------------------------------------------------------------------------------- /chatgpt/amazongpt/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/amazongpt/utils/translate-en-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/amazongpt/utils/translate-en-messages.py -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/docs/README.md -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/autoclear-chatgpt-history/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/autoclear-chatgpt-history/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/af/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/am/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ar/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/az/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/be/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/bem/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/bem/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/bg/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/bn/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/bo/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/bs/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ca/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ceb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ceb/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/cs/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/cy/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/da/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/de/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/dv/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/dz/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/el/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/en/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/eo/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/es/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/et/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/eu/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/fa/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/fi/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/fo/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/fr/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/gd/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/gl/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/gu/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/haw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/haw/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/he/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/hi/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/hr/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ht/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/hu/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/hy/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/id/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/is/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/it/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ja/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ka/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/kab/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/kab/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/kk/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/km/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/kn/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ko/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ku/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ky/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/la/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/lb/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/lo/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/lt/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/lv/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/mg/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/mi/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/mk/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ml/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/mn/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ms/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/mt/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/my/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ne/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/nl/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/no/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ny/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/pa/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/pap/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/pap/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/pl/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ps/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ps/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/pt/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ro/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ru/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/rw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/rw/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sg/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/si/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/si/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sk/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sl/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sm/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sm/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sn/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/so/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/so/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sr/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sv/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/sw/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ta/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/te/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/tg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/tg/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/th/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ti/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ti/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/tk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/tk/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/tn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/tn/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/to/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/to/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/tpi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/tpi/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/tr/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/uk/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/ur/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/ur/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/uz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/uz/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/vi/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/xh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/xh/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/yi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/yi/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/zh/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/zh_HK/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/zh_HK/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/zh_SG/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/zh_SG/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/_locales/zu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/_locales/zu/messages.json -------------------------------------------------------------------------------- /chatgpt/bravegpt/bravegpt.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/bravegpt.user.js -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/README.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/bravegpt/utils/translate-en-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/bravegpt/utils/translate-en-messages.py -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/zh-cn/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-continue/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-continue/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/af/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/am/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ar/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/az/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/be/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/bg/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/bn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/bo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/br/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/br/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/bs/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ca/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/cs/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/cy/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/da/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/de/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/dv/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/dz/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/el/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/en/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/eo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/es/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/et/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/eu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/fa/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/fi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/fo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/fr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/gd/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/gl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/gu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/he/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/hi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/hr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ht/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/hu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/hy/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/id/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/is/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/it/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ja/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ka/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/kk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/km/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/kn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ko/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ku/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ky/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/la/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/lb/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/lo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/lt/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/lv/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/mg/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/mi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/mk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ml/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/mn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/mr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/mr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ms/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/mt/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/my/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ne/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/nl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/no/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/ny/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/or/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/or/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/pa/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/_locales/pl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/ja/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/ja/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/ja/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/ja/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/ja/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/ja/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/ja/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/zh-cn/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-refresh/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-refresh/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/af/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/am/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ar/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/az/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/be/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/bg/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/bn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/bo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/bs/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ca/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/cs/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/cy/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/da/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/de/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/dv/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/dz/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/el/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/en/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/eo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/es/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/et/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/eu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/fa/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/fi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/fo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/fr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/gd/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/gl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/gu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/he/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/hi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/hr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ht/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/hu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/hy/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/id/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/is/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/it/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ja/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ka/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/kk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/km/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/kn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ko/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ku/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ky/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/la/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/lb/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/lo/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/lt/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/lv/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/mg/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/mi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/mk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ml/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/mn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ms/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/mt/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/my/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ne/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/nl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/no/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ny/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/pa/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/pl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ps/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ps/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/pt/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ro/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ru/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/rw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/rw/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sg/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/si/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/si/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sl/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sm/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sm/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/so/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/so/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sv/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/sw/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ta/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/te/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/tg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/tg/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/th/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ti/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ti/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/tk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/tk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/tn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/tn/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/to/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/to/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/tr/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/uk/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/ur/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/ur/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/uz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/uz/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/vi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/xh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/xh/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/yi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/yi/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/zh/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/_locales/zu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/_locales/zu/messages.json -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/chatgpt-auto-talk.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/chatgpt-auto-talk.user.js -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/zh-cn/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-auto-talk/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-auto-talk/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/chatgpt-infinity.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/chatgpt-infinity.user.js -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/ja/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/ja/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/ja/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/ja/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/ja/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/ja/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-infinity/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-infinity/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/README.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/chatgpt-widescreen/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/chatgpt-widescreen/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/docs/README.md -------------------------------------------------------------------------------- /chatgpt/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/docs/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/docs/zh-cn/README.md -------------------------------------------------------------------------------- /chatgpt/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/af/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/am/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ar/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/az/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/be/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/bem/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/bem/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/bg/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/bn/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/bo/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/bs/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ca/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ceb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ceb/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/cs/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/cy/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/da/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/de/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/dv/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/dz/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/el/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/en/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/eo/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/es/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/et/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/eu/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/fa/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/fi/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/fo/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/fr/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/gd/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/gl/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/gu/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/haw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/haw/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/he/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/hi/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/hr/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ht/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/hu/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/hy/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/id/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/is/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/it/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ja/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ka/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/kab/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/kab/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/kk/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/km/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/kn/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ko/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ku/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ky/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/la/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/lb/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/lo/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/lt/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/lv/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/mg/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/mi/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/mk/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ml/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/mn/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ms/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/mt/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/my/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ne/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/nl/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/no/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ny/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/pa/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/pap/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/pap/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/pl/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ps/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ps/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/pt/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ro/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ru/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/rw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/rw/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sg/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/si/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/si/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sk/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sl/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sm/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sm/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sn/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/so/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/so/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sr/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sv/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/sw/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ta/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/te/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/tg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/tg/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/th/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ti/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ti/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/tk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/tk/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/tn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/tn/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/to/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/to/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/tpi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/tpi/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/tr/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/uk/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/ur/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/ur/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/uz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/uz/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/vi/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/xh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/xh/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/yi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/yi/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/zh/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/zh_HK/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/zh_HK/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/zh_SG/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/zh_SG/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/_locales/zu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/_locales/zu/messages.json -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/README.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/duckduckgpt.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/duckduckgpt.user.js -------------------------------------------------------------------------------- /chatgpt/duckduckgpt/utils/translate-en-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/duckduckgpt/utils/translate-en-messages.py -------------------------------------------------------------------------------- /chatgpt/googlegpt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/af/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/af/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/am/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/am/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ar/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/az/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/az/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/be/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/be/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/bem/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/bem/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/bg/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/bn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/bn/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/bo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/bo/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/bs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/bs/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ca/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ceb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ceb/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/cs/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/cy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/cy/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/da/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/de/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/dv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/dv/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/dz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/dz/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/el/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/en/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/eo/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/es/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/et/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/et/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/eu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/eu/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/fa/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/fi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/fi/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/fo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/fo/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/fr/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/gd/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/gd/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/gl/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/gu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/gu/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/haw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/haw/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/he/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/he/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/hi/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/hr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/hr/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ht/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ht/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/hu/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/hy/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/hy/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/id/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/is/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/is/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/it/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ja/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ka/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ka/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/kab/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/kab/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/kk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/kk/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/km/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/km/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/kn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/kn/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ko/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ku/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ku/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ky/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ky/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/la/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/la/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/lb/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/lb/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/lo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/lo/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/lt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/lt/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/lv/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/mg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/mg/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/mi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/mi/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/mk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/mk/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ml/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ml/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/mn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/mn/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ms/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ms/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/mt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/mt/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/my/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/my/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ne/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ne/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/nl/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/no/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/no/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ny/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ny/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/pa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/pa/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/pap/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/pap/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/pl/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ps/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ps/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/pt/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/rn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/rn/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ro/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ro/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ru/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/rw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/rw/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sg/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/si/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/si/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sk/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sl/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sm/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sm/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sn/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/so/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/so/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sr/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sv/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/sw/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/sw/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ta/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ta/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/te/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/te/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/tg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/tg/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/th/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ti/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ti/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/tk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/tk/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/tn/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/tn/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/to/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/to/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/tpi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/tpi/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/tr/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/uk/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/ur/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/ur/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/uz/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/uz/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/vi/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/xh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/xh/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/yi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/yi/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/zh/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/zh_HK/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/zh_HK/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/zh_SG/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/zh_SG/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/_locales/zu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/_locales/zu/messages.json -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/README.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/hi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/hi/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/hi/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/hi/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/hi/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/hi/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/zh-cn/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/zh-cn/PRIVACY.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /chatgpt/googlegpt/googlegpt.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/googlegpt.user.js -------------------------------------------------------------------------------- /chatgpt/googlegpt/utils/translate-en-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/googlegpt/utils/translate-en-messages.py -------------------------------------------------------------------------------- /chatgpt/media/icons/openai-favicon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/media/icons/openai-favicon48.png -------------------------------------------------------------------------------- /chatgpt/media/icons/openai-favicon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/media/icons/openai-favicon64.png -------------------------------------------------------------------------------- /chatgpt/media/icons/robot-emoji-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/media/icons/robot-emoji-16.png -------------------------------------------------------------------------------- /chatgpt/media/icons/robot-emoji-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/media/icons/robot-emoji-320.png -------------------------------------------------------------------------------- /chatgpt/media/icons/robot-emoji-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/media/icons/robot-emoji-48.png -------------------------------------------------------------------------------- /chatgpt/media/icons/robot-emoji-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/chatgpt/media/icons/robot-emoji-64.png -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /docs/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/docs/zh-cn/README.md -------------------------------------------------------------------------------- /docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /github/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/LICENSE.md -------------------------------------------------------------------------------- /github/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/docs/README.md -------------------------------------------------------------------------------- /github/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/docs/SECURITY.md -------------------------------------------------------------------------------- /github/docs/zh-cn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/docs/zh-cn/LICENSE.md -------------------------------------------------------------------------------- /github/docs/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/docs/zh-cn/README.md -------------------------------------------------------------------------------- /github/docs/zh-cn/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/docs/zh-cn/SECURITY.md -------------------------------------------------------------------------------- /github/github-star-history/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-star-history/LICENSE.md -------------------------------------------------------------------------------- /github/github-star-history/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-star-history/docs/PRIVACY.md -------------------------------------------------------------------------------- /github/github-star-history/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-star-history/docs/README.md -------------------------------------------------------------------------------- /github/github-star-history/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-star-history/docs/SECURITY.md -------------------------------------------------------------------------------- /github/github-widescreen/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-widescreen/LICENSE.md -------------------------------------------------------------------------------- /github/github-widescreen/docs/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-widescreen/docs/PRIVACY.md -------------------------------------------------------------------------------- /github/github-widescreen/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-widescreen/docs/README.md -------------------------------------------------------------------------------- /github/github-widescreen/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-widescreen/docs/SECURITY.md -------------------------------------------------------------------------------- /github/github-widescreen/github-widescreen.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/github/github-widescreen/github-widescreen.user.js -------------------------------------------------------------------------------- /hide-forum-images/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/hide-forum-images/LICENSE.md -------------------------------------------------------------------------------- /hide-forum-images/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/hide-forum-images/docs/README.md -------------------------------------------------------------------------------- /hide-forum-images/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/hide-forum-images/docs/SECURITY.md -------------------------------------------------------------------------------- /hide-forum-images/hide-forum-images.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/hide-forum-images/hide-forum-images.user.js -------------------------------------------------------------------------------- /highlight-radio-bubbles/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/highlight-radio-bubbles/LICENSE.md -------------------------------------------------------------------------------- /highlight-radio-bubbles/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/highlight-radio-bubbles/docs/README.md -------------------------------------------------------------------------------- /highlight-radio-bubbles/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/highlight-radio-bubbles/docs/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/package.json -------------------------------------------------------------------------------- /utils/bump/chatbots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/utils/bump/chatbots.js -------------------------------------------------------------------------------- /utils/bump/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/utils/bump/resources.js -------------------------------------------------------------------------------- /youtube-classic/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/youtube-classic/LICENSE.md -------------------------------------------------------------------------------- /youtube-classic/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/youtube-classic/docs/README.md -------------------------------------------------------------------------------- /youtube-classic/docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/youtube-classic/docs/SECURITY.md -------------------------------------------------------------------------------- /youtube-classic/youtube-classic.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamlui/userscripts/HEAD/youtube-classic/youtube-classic.user.js --------------------------------------------------------------------------------