Skip to content

Commit fa27eac

Browse files
committed
v2.0.0
1 parent 1a75ab9 commit fa27eac

File tree

6 files changed

+1295
-891
lines changed

6 files changed

+1295
-891
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 2.0.0
2+
3+
Features
4+
5+
- Now supports different LLM families! Currently supported LLM providers are :
6+
- ChatGPT
7+
- Deepseek
8+
- Claude
9+
- Mistral
10+
- More LLM providers will be added in the future, missing features such as autosave (or history save for Mistral's Le Chat) will be added soon
11+
12+
Fixes
13+
14+
- The pin is back on ChatGPT!
15+
16+
117
## 1.11.0
218

319
Features

README.md

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ChatGPT to Notion
1+
# Chat to Notion
22

3-
[ChatGPT to Notion](https://chrome.google.com/webstore/detail/chatgpt-to-notion/oojndninaelbpllebamcojkdecjjhcle) brings the cleverness of ChatGPT into your favorite app!
3+
[Chat to Notion](https://chrome.google.com/webstore/detail/chatgpt-to-notion/oojndninaelbpllebamcojkdecjjhcle) (previously ChatGPT to Notion) brings the cleverness of your favorite LLMs into your favorite app!
44

55
Side note: I have taken note that there are unfixed bugs (especially on Edge browser) and will be working on fixing them over the following weeks. I have been away for quite some time because of interships and my studies but I will at least make sure that the extension is bug free.
66

@@ -10,29 +10,22 @@ For information about the extension itself more than the code behind it, check o
1010

1111
## Motive
1212

13-
While some tools already exist to save a webpage to Notion, and some going as far as allowing the user to save the page's contents, these solutions fall short when trying to save a conversation with ChatGPT. As such, providing a specialized extension to do this work efficiently felt natural.
13+
While some tools already exist to save a webpage to Notion, and some going as far as allowing the user to save the page's contents, these solutions fall short when trying to save a conversation with ChatGPT. As such, providing a specialized extension to do this work efficiently felt natural. Then, with the emergence of new credible alternatives to ChatGPT, the need to expand this tool to other LLMs felt bigger and bigger.
1414

1515
## Usage
1616

17-
On ChatGPT's page, you'll notice a new pin icon under each of its answers. You can use it to save specifically that answer and the related prompt to your Notion database of choice. If you want to save the whole discussion, you can do so from the extension popup.
17+
On ChatGPT/Deepseek/Claude/Mistral's page, you'll notice a new pin icon under each of its answers. You can use it to save specifically that answer and the related prompt to your Notion database of choice. If you want to save the whole discussion, you can do so from the extension popup.
1818

1919
You may link as many databases with the extension as you need to, and you can then choose which database to save your discussion at saving time. If a page with the same title already exists in the database, the newly saved content will be appended to the end of said page.
2020

2121
### Websites access
2222

2323
Please refer to the [FAQ](https://github.com/L-a-r-t/chatgpt-to-notion/wiki/FAQ) for more info about the websites the extensions needs to access.
2424

25-
## Contribution
26-
27-
As this is my first time building a project that is open to contributions I will need a little time to sort things out and learn the best practices for great collaboration on GitHub. I'm also busy with some entrance exams until July 1st. If you want to help (thanks!), please stay patient for a few days.
28-
2925
## Roadmap
3026

3127
These are the things that I plan to work on at some point. I hope to have the following (ranked by priority) done in the near future:
3228

33-
- [ ] Extended support for code interpreter & plugins (WIP)
34-
- [ ] Automated tests
35-
- [ ] Document the code properly for anyone who's interested (WIP)
36-
- [ ] Keyboard shortcuts
37-
- [ ] Improved chat formatting on some edge cases
38-
- [x] Support ChatGPT websearch and plugins
29+
- [ ] Adding Perplexity & Grok support
30+
- [ ] Adding history save to Mistral & autosave to every LLM
31+
- [ ] Document the code properly for anyone who's interested

assets/locales/ja/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"message": "Chat から Notion へ"
44
},
55
"extensionDescription": {
6-
"message": "ChatGPT との会話を直接 Notion に保存しましょう"
6+
"message": "ChatGPT、Deepseek、Claude、Mistral との会話を直接 Notion に保存できます"
77
},
88
"errConnect": {
99
"message": "拡張機能のアイコンをクリックして Notion に接続してください。"

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "chatgpt-to-notion",
3-
"displayName": "ChatGPT to Notion",
4-
"version": "1.11.0",
2+
"name": "chat-to-notion",
3+
"displayName": "Chat to Notion",
4+
"version": "2.0.0",
55
"description": "__MSG_extensionDescription__",
66
"author": "Théo Lartigau",
77
"scripts": {
@@ -17,9 +17,10 @@
1717
"@tryfabric/martian": "^1.2.4",
1818
"dayjs": "^1.11.7",
1919
"node-html-markdown": "^1.3.0",
20-
"plasmo": "0.85.0",
20+
"plasmo": "0.90.3",
2121
"react": "18.2.0",
2222
"react-dom": "18.2.0",
23+
"react-markdown": "^8.0.7",
2324
"shrink-string": "^3.1.2",
2425
"tailwind-merge": "^2.2.1"
2526
},
@@ -59,7 +60,6 @@
5960
"https://chatgpt.com/*",
6061
"https://chat.deepseek.com/*",
6162
"https://chat.mistral.ai/*",
62-
"https://gemini.google.com/*",
6363
"https://claude.ai/*"
6464
],
6565
"permissions": [

0 commit comments

Comments
 (0)