Skip to content

Commit 89950a0

Browse files
committed
feat:Add support for night mode.
1 parent 630a7ef commit 89950a0

12 files changed

+1054
-270
lines changed

.DS_Store

0 Bytes
Binary file not shown.

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@
2323

2424
## 安装步骤
2525

26-
按照以下步骤安装该扩展插件:
27-
28-
1. **通过 Chrome Web Store 安装**:访问 [Chrome Web Store](https://chromewebstore.google.com/detail/bjjobdlpgglckcmhgmmecijpfobmcpap) 并点击“添加到 Chrome”按钮进行安装。
29-
2. **克隆仓库**`git clone https://github.com/DeepLifeStudio/DeepSeekAI.git`
30-
3. **安装依赖**`npm install`
31-
4. **构建扩展程序**`npm run build`
32-
5. **将扩展程序加载到您的浏览器中**
33-
- 对于 Chrome/Edge:导航到 `chrome://extensions/`(或 `edge://extensions/`)、启用"开发者模式"并单击"加载已解压的扩展程序"选择 `dist` 文件夹。
34-
- 对于 Firefox:导航到 `about:debugging#/runtime/this-firefox`、单击"加载临时加载项"并选择 `dist/manifest.json` 文件。
26+
1. **通过 Chrome Web Store 安装**:访问 [Chrome Web Store](https://chromewebstore.google.com/detail/bjjobdlpgglckcmhgmmecijpfobmcpap) 并点击"添加到 Chrome"按钮进行安装。
27+
28+
2. **通过 Edge Add-ons 安装**:访问 [Microsoft Edge Add-ons](您的Edge商店链接) 并点击"获取"按钮进行安装。
29+
30+
3. **手动安装**
31+
- 克隆仓库:`git clone https://github.com/DeepLifeStudio/DeepSeekAI.git`
32+
- 安装依赖:`npm install`
33+
- 构建扩展程序:`npm run build`
3534

3635
## 配置
3736

chrome-capture-2024-9-10.gif

-2.07 MB
Binary file not shown.

dist.zip

-4.24 MB
Binary file not shown.

package.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
2-
"name": "AI Assistant",
2+
"name": "ai-assistant",
33
"version": "1.0.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
8-
"build": "webpack"
8+
"build": "webpack",
9+
"build:zip": "webpack && cd dist && zip -r ../extension.zip *",
10+
"build:chrome": "npm run build:zip && mv extension.zip chrome-submission.zip",
11+
"build:edge": "npm run build:zip && mv extension.zip edge-submission.zip",
12+
"build:all": "npm run build:chrome && npm run build:edge"
913
},
1014
"keywords": [],
1115
"author": "",
@@ -21,7 +25,9 @@
2125
"interactjs": "^1.10.27",
2226
"markdown-it": "^14.1.0",
2327
"markdown-it-highlightjs": "^4.1.0",
28+
"markdown-it-mathjax3": "^4.3.2",
2429
"marked": "^13.0.3",
30+
"mathjax": "^3.2.2",
2531
"overlayscrollbars": "^2.10.0",
2632
"perfect-scrollbar": "^1.5.5",
2733
"pnpm": "^9.7.0",

0 commit comments

Comments
 (0)