├── .gitignore
├── README.md
├── env.d.ts
├── manifest.json
├── options.html
├── package-lock.json
├── package.json
├── popup.html
├── public
└── img
│ └── logo.png
├── src
├── apiServer.ts
├── assets
│ ├── chat-card.css
│ ├── global.css
│ ├── options.css
│ └── popup.css
├── background
│ ├── chatgpt.ts
│ └── server.ts
├── content
│ ├── ChatCard.vue
│ └── content.ts
├── options
│ ├── App.vue
│ ├── Conversation.vue
│ ├── Home.vue
│ ├── Shortcuts.vue
│ ├── main.ts
│ ├── prompt.vue
│ ├── settings.vue
│ └── style.css
├── popup
│ ├── Popup.vue
│ ├── index.ts
│ └── style.css
└── utils.ts
├── tsconfig.config.json
├── tsconfig.json
├── vite.config.ts
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | *.zip
2 | *.log
3 | build/
4 | .DS_Store
5 | .idea/
6 | node_modules/
7 | dist/
8 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ChatGPT Plus
2 | A browser plugin that enhances the ability of ChatGPT.
3 |
4 | The current abilities include:
5 | - Auto-Prompt generation from highlighted text.
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
40 | with extra class is-loading, your icon is able to rotate 360 deg in 2 41 | seconds, you can also override this 42 |
43 |