mirror of
https://github.com/NaiboWang/EasySpider.git
synced 2026-09-19 01:58:58 +08:00
构建说明更新
This commit is contained in:
@@ -39,7 +39,7 @@ def compress_folder_to_7z_split(folder_path, output_file):
|
||||
# 压缩文件夹
|
||||
subprocess.call(["7z", "a", "-v95m", output_file, folder_path])
|
||||
|
||||
easyspider_version = "0.3.3"
|
||||
easyspider_version = "0.3.5"
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
|
||||
@@ -13,3 +13,4 @@ Chrome/
|
||||
execution_instances/*
|
||||
.DS_Store
|
||||
npminstall-debug.log
|
||||
package-lock.json
|
||||
Binary file not shown.
Binary file not shown.
+121
-19
@@ -1,10 +1,50 @@
|
||||
## Note
|
||||
# 环境编译说明/Environment Compilation Instructions
|
||||
|
||||
EasySpider分三部分:
|
||||
|
||||
1. 主程序:在`ElectronJS`文件夹下。
|
||||
2. 浏览器扩展:在`Extension`文件夹下,为浏览器的“操作控制台”的代码,打包后的扩展在此目录下的`EasySpider_zh.crx`文件。
|
||||
3. 执行阶段程序:在`ExecuteStage`文件夹下。
|
||||
|
||||
此部分为`主程序`的编译说明。
|
||||
|
||||
-----
|
||||
|
||||
EasySpider is divided into three parts:
|
||||
|
||||
1. Main program: Located in the ElectronJS folder.
|
||||
2. Browser extension: Located in the Extension folder, i.e., the `EasySpider_en.crx` file in this folder.
|
||||
3. Execution stage program: Located in the ExecuteStage folder.
|
||||
|
||||
This section covers the compilation instructions for the `main program`.
|
||||
|
||||
## 注意事项/Note
|
||||
|
||||
请记住,每当EasySpider扩展程序和执行程序更新时,都要更新`EasySpider.crx`和`easyspider_executestage`文件。
|
||||
|
||||
Remember to update EasySpider.crx everytime the extension updates.
|
||||
|
||||
## Prerequisite
|
||||
## 环境构建/Environment Setup
|
||||
|
||||
Download a chrome from the Internet: https://www.google.com/chrome/, and then put them into this folder, with name format of the following:
|
||||
以下以Windows x64版本为例。
|
||||
|
||||
Taking the example of Windows x64 version.
|
||||
|
||||
### 浏览器和驱动/Browser and Driver
|
||||
|
||||
实在搞不定本节的情况下,下载一个直接能用的EasySpider,并把文件夹内的`EasySpider\resources\app\chrome_win64`文件夹拷贝到此`ElectronJS`文件夹下即可。
|
||||
|
||||
If you're unable to handle the tasks in this section, you can download a ready-to-use EasySpider. Simply copy the EasySpider\resources\app\chrome_win64 folder from the downloaded files and paste it into the ElectronJS folder.
|
||||
|
||||
------
|
||||
|
||||
在自己的机器环境已经安装了Chrome的情况下,直接执行`python3 update_chrome.py`也可以完成本节下面写的一系列的操作,注意设置文件中的chrome大版本号为本机chrome的版本号。
|
||||
|
||||
If you already have Chrome installed on your local machine, you can directly execute python3 update_chrome.py to perform the operations mentioned in the following section. Make sure to set the Chrome major version in the configuration file to match the version of Chrome installed on your machine.
|
||||
|
||||
------
|
||||
|
||||
下载一个Chrome:[https://www.google.com/chrome/](https://www.google.com/chrome/),然后找到Chrome安装后的文件夹,如`C:\Program Files\Google\Chrome\Application`,把这个文件夹拷贝到此`ElectronJS`文件夹内,并按照以下格式更名:
|
||||
|
||||
```
|
||||
chrome_win32/ # for windows x86
|
||||
@@ -13,7 +53,7 @@ chrome_linux64/ # for linux x64
|
||||
chrome_mac64/ # for mac x64
|
||||
```
|
||||
|
||||
Then, download the corresponding chromedriver from the Internet on this page: https://chromedriver.chromium.org/downloads, note the **chromedriver version must match your chrome version**!!! And put them into corresponding chrome folder, with name format of the following:
|
||||
然后,从下面的页面下载和**自己安装的Chrome版本一致**的Chromedriver:https://chromedriver.chromium.org/downloads,把chromedriver放入刚刚的chrome文件夹内,并更名为下面的格式:
|
||||
|
||||
```
|
||||
chromedriver_win32.exe # for windows x86
|
||||
@@ -22,57 +62,119 @@ chromedriver_linux64 # for linux x64
|
||||
chromedriver_mac64 # for mac x64
|
||||
```
|
||||
|
||||
For example, if you want to build this software on Windows x64 platform, then you should first download a chrome for windows x64, then copy the whole `chrome` folder to this `ElectronJS` folder and rename the folder to `chrome_win64`, assume the chrome version you downloaded is 110; then, download a `chromedriver.exe` with version 110 for windows x64, and put it into the `chrome_win64` folder, then rename it to `chromedriver_win64.exe`.
|
||||
例如,如果您想在Windows x64平台上构建此软件,那么您首先需要下载适用于Windows x64的Chrome浏览器,并将整个`chrome`文件夹复制到`ElectronJS`文件夹中,然后将文件夹重命名为`chrome_win64`。假设您下载的Chrome版本是110。接下来,下载一个适用于Windows x64的110版本的ChromeDriver,并将其放入`chrome_win64`文件夹中,然后将其重命名为`chromedriver_win64.exe`。
|
||||
|
||||
最后,把此文件夹内的`stealth.min.js`和`execute.bat`文件拷贝入`chrome`文件夹内。
|
||||
|
||||
|
||||
Finally, copy the `stealth.min.js` and `execute.bat` (for windows x64) file in this folder to these `chrome` folders.
|
||||
Download a Chrome from the Internet: https://www.google.com/chrome/, and then put them into this folder, with name format of the following:
|
||||
|
||||
## Run Instruction
|
||||
```
|
||||
chrome_win32/ # for windows x86
|
||||
chrome_win64/ # for windows x64
|
||||
chrome_linux64/ # for linux x64
|
||||
chrome_mac64/ # for mac x64
|
||||
```
|
||||
|
||||
On Windows, you need to install `VS Build Tools 2017` (https://aka.ms/vs/15/release/vs_buildtools.exe, select and install the `Visual Studio Build Tools 2017` component) first for node-gyp to install `node-windows-manager`.
|
||||
Then, download the corresponding chromedriver from the Internet on this page: https://chromedriver.chromium.org/downloads, note the **chromedriver version must match your chrome version!!!** And put them into corresponding chrome folder, with name format of the following:
|
||||
|
||||
```
|
||||
chromedriver_win32.exe # for windows x86
|
||||
chromedriver_win64.exe # for windows x64
|
||||
chromedriver_linux64 # for linux x64
|
||||
chromedriver_mac64 # for mac x64
|
||||
```
|
||||
|
||||
For example, if you want to build this software on Windows x64 platform, then you should first download a chrome for Windows x64, then copy the whole `chrome` folder to this `ElectronJS` folder and rename the folder to `chrome_win64`, assume the chrome version you downloaded is 110; then, download a `chromedriver.exe` with version 110 for Windows x64, and put it into the `chrome_win64` folder, then rename it to `chromedriver_win64.exe`.
|
||||
|
||||
Finally, copy the `stealth.min.js` and `execute.bat` (for Windows x64) file in this folder to these `chrome` folders.
|
||||
|
||||
### NodeJS环境/NodeJS Environment
|
||||
|
||||
1. Windows环境下需要先安装`VS Build Tools 2017` (https://aka.ms/vs/15/release/vs_buildtools.exe)的`Visual C++ Build Tools`组件,不然下面的命令无法执行,其他系统不需要。
|
||||
2. 安装`NodeJS`:https://nodejs.org/zh-cn/download/
|
||||
3. 运行下面的命令来安装依赖:
|
||||
|
||||
```
|
||||
npm install
|
||||
npm install @electron-forge/cli -g
|
||||
```
|
||||
|
||||
Then run the software in developing mode:
|
||||
如果上面的命令运行速度很慢可以参考NodeJS换源说明:https://blog.csdn.net/qq_23211463/article/details/123769061
|
||||
|
||||
-----
|
||||
|
||||
1. On Windows, you need to install `VS Build Tools 2017` (https://aka.ms/vs/15/release/vs_buildtools.exe, select and install the `Visual C++ Build Tools` component) first for node-gyp to install `node-windows-manager` (No need for other OS).
|
||||
2. Install `NodeJS`: https://nodejs.org/en/download/
|
||||
3. Run the following commands to install NodeJS packages:
|
||||
|
||||
```
|
||||
npm install
|
||||
npm install @electron-forge/cli -g
|
||||
```
|
||||
|
||||
## 运行说明/Run Instruction
|
||||
|
||||
在当前文件夹执行以下命令即可运行程序:
|
||||
|
||||
```sh
|
||||
npm run start_direct
|
||||
```
|
||||
|
||||
## Package Instruction
|
||||
但到此为止只能设计任务,不能执行任务,想要执行任务还需要完成`ExecuteStage`文件夹下的执行任务程序的编译说明才可以执行。
|
||||
|
||||
After finish developing, package software by the following command:
|
||||
-----
|
||||
|
||||
Run the software in developing mode:
|
||||
|
||||
```sh
|
||||
npm run start_direct
|
||||
```
|
||||
|
||||
But so far can only design the task, can not execute the task, want to execute the task also need to complete the 'ExecuteStage' folder of the execution of the task program compilation instructions can be executed.
|
||||
|
||||
## 打包发布说明/Package Instruction
|
||||
|
||||
打包发布前,确保执行阶段程序`easyspider_executestage(.exe)`已放入`chrome(_win64)`文件夹内,且浏览器插件`EasySpider_zh.crx`已经是最新版本。
|
||||
|
||||
执行下面的命令即可打包:
|
||||
|
||||
```
|
||||
npx electron-forge import
|
||||
npm run package
|
||||
```
|
||||
|
||||
optional:
|
||||
-----
|
||||
|
||||
Before packaging and releasing, make sure that the task execution program `easyspider_executestage(.exe)` is placed inside the `chrome(_win64)` folder and that the browser extension `EasySpider_en.crx` is the latest version.
|
||||
|
||||
After finishing developing, package software by the following command:
|
||||
|
||||
```
|
||||
npm run make
|
||||
npx electron-forge import
|
||||
npm run package
|
||||
```
|
||||
|
||||
#### For windows x64
|
||||
### For windows x64
|
||||
|
||||
依次执行下面两个cmd即可打包并发布,无需执行上面的npm命令
|
||||
依次执行下面两个cmd即可打包并发布,无需执行上面的npm命令,其他系统同理。
|
||||
|
||||
```
|
||||
package_win64.cmd
|
||||
clean_and_release_win64.cmd
|
||||
```
|
||||
|
||||
#### For Windows x86
|
||||
-----
|
||||
|
||||
依次执行下面两个cmd即可打包并发布,无需执行上面的npm命令
|
||||
Execute the following two CMD commands sequentially to package and publish the program. There is no need to execute the previous npm command. The process is similar for other systems.
|
||||
|
||||
```
|
||||
package_win32.cmd
|
||||
clean_and_release_win32.cmd
|
||||
package_win64.cmd
|
||||
clean_and_release_win64.cmd
|
||||
```
|
||||
|
||||
### (可选)编译成安装包/(Optional) Compile to an installation package
|
||||
|
||||
```
|
||||
npm run make
|
||||
```
|
||||
@@ -4,16 +4,21 @@ import re
|
||||
import sys
|
||||
|
||||
# 读取JSON文件
|
||||
|
||||
|
||||
def read_json_file(file_path):
|
||||
with open(file_path, 'r', encoding='utf-8') as file:
|
||||
data = json.load(file)
|
||||
return data
|
||||
|
||||
# 保存为JSON文件
|
||||
|
||||
|
||||
def save_json_file(data, file_path):
|
||||
with open(file_path, 'w', encoding='utf-8') as file:
|
||||
json.dump(data, file, indent=4, ensure_ascii=False)
|
||||
|
||||
|
||||
def update_file_version(file_path, new_version, key="当前版本/Current Version: v"):
|
||||
with open(file_path, 'r', encoding='utf-8') as file:
|
||||
lines = file.readlines()
|
||||
@@ -24,7 +29,8 @@ def update_file_version(file_path, new_version, key="当前版本/Current Versio
|
||||
line = re.sub(pattern, r'\g<1>'+new_version, line)
|
||||
file.write(line)
|
||||
|
||||
version = "0.3.3"
|
||||
|
||||
version = "0.3.5"
|
||||
|
||||
# py html js
|
||||
|
||||
@@ -38,7 +44,7 @@ if __name__ == "__main__":
|
||||
|
||||
file_path = "./src/taskGrid/logic_CN.js"
|
||||
update_file_version(file_path, version, key='"version": "')
|
||||
|
||||
|
||||
file_path = "../ExecuteStage/easyspider_executestage.py"
|
||||
update_file_version(file_path, version, key='"version": "')
|
||||
|
||||
@@ -72,7 +78,7 @@ if __name__ == "__main__":
|
||||
|
||||
# 保存为JSON文件
|
||||
save_json_file(electron_config, file_path)
|
||||
|
||||
|
||||
file_path = "../Extension/manifest_v3/src/manifest.json"
|
||||
|
||||
# 读取JSON文件
|
||||
@@ -83,4 +89,4 @@ if __name__ == "__main__":
|
||||
electron_config["version"] = version
|
||||
|
||||
# 保存为JSON文件
|
||||
save_json_file(electron_config, file_path)
|
||||
save_json_file(electron_config, file_path)
|
||||
|
||||
Generated
+1939
-1163
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "easy-spider",
|
||||
"productName": "EasySpider",
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.5",
|
||||
"icon": "./favicon",
|
||||
"description": "NoCode Visual Web Crawler",
|
||||
"main": "main.js",
|
||||
@@ -63,7 +63,7 @@
|
||||
],
|
||||
"packagerConfig": {
|
||||
"icon": "./favicon",
|
||||
"appVersion": "0.3.3",
|
||||
"appVersion": "0.3.5",
|
||||
"name": "EasySpider",
|
||||
"executableName": "EasySpider",
|
||||
"appCopyright": "Naibo Wang (naibowang@foxmail.com)",
|
||||
@@ -76,4 +76,4 @@
|
||||
"publishers": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
<p><a @click="changeLang('en')" class="btn btn-outline-primary btn-lg"
|
||||
style="margin-top: 15px; width: 300px;height:60px;padding-top:12px;">English</a></p>
|
||||
<p style="font-size: 17px">当前版本/Current Version: v0.3.3</p>
|
||||
<p style="font-size: 17px">当前版本/Current Version: v0.3.5</p>
|
||||
<p style="font-size: 17px"><a href="https://github.com/NaiboWang/EasySpider/releases" target="_blank">Github</a>最新版本/Newest Version:<b>{{newest_version}}</b></p>
|
||||
<!-- <p>如发现新版本更新,可从以下Github仓库下载最新版本使用/If a new version is found, you can download the latest version from the following Github repository:</p>-->
|
||||
<!-- <p></p>-->
|
||||
|
||||
@@ -410,7 +410,7 @@ function saveService(type) {
|
||||
"url": url,
|
||||
"links": links,
|
||||
"create_time": new Date().toLocaleString(),
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.5",
|
||||
"saveThreshold": saveThreshold,
|
||||
"cloudflare": cloudflare,
|
||||
"environment": environment,
|
||||
|
||||
@@ -410,7 +410,7 @@ function saveService(type) {
|
||||
"url": url,
|
||||
"links": links,
|
||||
"create_time": new Date().toLocaleString(),
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.5",
|
||||
"saveThreshold": saveThreshold,
|
||||
"cloudflare": cloudflare,
|
||||
"environment": environment,
|
||||
|
||||
+76
-6
@@ -1,11 +1,81 @@
|
||||
出现permission denied请关闭杀毒软件
|
||||
# 环境编译说明/Environment Compilation Instructions
|
||||
|
||||
先安装python3.6及以上版本
|
||||
EasySpider分三部分:
|
||||
|
||||
然后安装pip3
|
||||
1. 主程序:在`ElectronJS`文件夹下。
|
||||
2. 浏览器扩展:在`Extension`文件夹下,为浏览器的“操作控制台”的代码。
|
||||
3. 执行阶段程序:在`ExecuteStage`文件夹下。
|
||||
|
||||
然后安装依赖库: pip3 install -r requirements.txt
|
||||
此部分为`执行阶段程序`的编译说明。
|
||||
|
||||
然后运行:python3 easyspider_executestage.py即可运行
|
||||
-----
|
||||
|
||||
打包说明: windows直接运行generateEXE_win64.cmd即可打包成exe文件并自动拷贝到../ElectronJS/chrome_win64/目录下
|
||||
EasySpider is divided into three parts:
|
||||
|
||||
1. Main program: Located in the ElectronJS folder.
|
||||
2. Browser extension: Located in the Extension folder.
|
||||
3. Execution stage program: Located in the ExecuteStage folder.
|
||||
|
||||
This section covers the compilation instructions for the `Execution stage program`.
|
||||
|
||||
## 环境构建/Environment Setup
|
||||
|
||||
1. 安装python3.6及以上版本并添加至系统环境变量:https://www.python.org/downloads/
|
||||
2. 安装pip3 并添加至系统环境变量(windows安装python后会自带pip,Linux和MacOS安装方式请自行搜索)。
|
||||
3. 安装执行阶段需要的依赖库:
|
||||
|
||||
```sh
|
||||
pip3 install -r requirements.txt
|
||||
```
|
||||
|
||||
-----
|
||||
|
||||
1. Install Python 3.6 or higher version and add it to the system environment variables: [https://www.python.org/downloads/](https://www.python.org/downloads/).
|
||||
2. Install pip3 and add it to the system environment variables. (On Windows, pip is automatically installed with Python. For Linux and macOS, please refer to the appropriate installation instructions).
|
||||
3. Install the required dependencies for the execution stage by running:
|
||||
|
||||
```sh
|
||||
pip3 install -r requirements.txt
|
||||
```
|
||||
|
||||
## 运行说明/Run Instruction
|
||||
|
||||
运行程序前,确保已经完成了`ElectronJS`文件夹下的编译说明,保证`chrome`文件夹和`chromedriver`环境已经就绪,同时**EasySpider**主程序已在运行中。
|
||||
|
||||
在当前文件夹下直接运行程序:
|
||||
|
||||
```Python
|
||||
python3 easyspider_executestage.py --id [1]
|
||||
```
|
||||
|
||||
以上是运行任务号为`1`的任务的示例命令,更多命令行参数使用说明请参考:https://github.com/NaiboWang/EasySpider/wiki/Argument-Instruction
|
||||
|
||||
-----
|
||||
|
||||
Before running the program, make sure you have completed the compilation instructions in the `ElectronJS` folder and ensure that the `chrome` folder and `chromedriver` environment are ready. Also, ensure that the **EasySpider** main program is already running.
|
||||
|
||||
To run the program directly in the current folder, use the following command:
|
||||
|
||||
```Python
|
||||
python3 easyspider_executestage.py --id [1]
|
||||
```
|
||||
|
||||
The above is an example command to run a task with the ID of `1`. For more information on command-line parameters, please refer to: [Argument Instruction](https://github.com/NaiboWang/EasySpider/wiki/Argument-Instruction) on the project's GitHub Wiki.
|
||||
|
||||
### VS Code调试/VS Code Debug
|
||||
|
||||
可以用VS Code打开此文件夹即可调试程序,可修改`.vscode`下的`launch.json`文件中的调试参数,调试说明参考:https://zhuanlan.zhihu.com/p/41189402
|
||||
|
||||
You can use VS Code to open this folder and debug the program. You can modify the debugging parameters in the launch.json file located under the .vscode folder. For instructions on debugging with VSCode, you can refer to this guide: [Debugging Python with Visual Studio Code](https://code.visualstudio.com/docs/python/debugging).
|
||||
|
||||
## 打包说明/Package Instruction
|
||||
|
||||
如果想要在主程序直接点击“本地直接运行”按钮即可执行程序,则需要打包程序为可执行程序。
|
||||
|
||||
Windows x64直接运行`generateEXE_win64.cmd`即可把执行阶段程序打包成`exe`文件并自动拷贝到`../ElectronJS/chrome_win64/`目录下,其他系统同理。
|
||||
|
||||
-----
|
||||
|
||||
To execute the program by simply clicking the "Run Locally" button in the main program, you will need to package the program into an executable file.
|
||||
|
||||
For Windows x64, you can run the generateEXE_win64.cmd script. This script will package the execution stage program into an .exe file and automatically copy it to the ../ElectronJS/chrome_win64/ directory. The process for other systems is similar.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -3,4 +3,6 @@ requests==2.31.0
|
||||
selenium==4.5.0
|
||||
pyinstaller
|
||||
Pillow
|
||||
pytesseract
|
||||
pytesseract
|
||||
keyboard
|
||||
undetected_chromedriver
|
||||
@@ -0,0 +1,78 @@
|
||||
# 环境编译说明/Environment Compilation Instructions
|
||||
|
||||
EasySpider分三部分:
|
||||
|
||||
1. 主程序:在`ElectronJS`文件夹下。
|
||||
2. 浏览器扩展:在`Extension`文件夹下,为浏览器的“操作控制台”的代码,打包后的扩展在`ElectronJS`目录下的`EasySpider_zh.crx`文件。
|
||||
3. 执行阶段程序:在`ExecuteStage`文件夹下。
|
||||
|
||||
此部分为`浏览器扩展`的编译说明,本节的所有命令都在`manifest_v3`文件夹内执行。
|
||||
|
||||
-----
|
||||
|
||||
EasySpider is divided into three parts:
|
||||
|
||||
1. Main program: Located in the ElectronJS folder.
|
||||
2. Browser extension: Located in the Extension folder, i.e., the `EasySpider_en.crx` file in the `ElectronJS` folder.
|
||||
3. Execution stage program: Located in the ExecuteStage folder.
|
||||
|
||||
This section covers the compilation instructions for the `Browser extension`, all commands in this section are executed in the `manifest_v3` folder.
|
||||
|
||||
## 环境构建/Environment Setup
|
||||
|
||||
1. 安装`NodeJS`:https://nodejs.org/zh-cn/download/
|
||||
2. 运行下面的命令来安装依赖:
|
||||
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
-----
|
||||
|
||||
1. Install `NodeJS`: https://nodejs.org/en/download/
|
||||
2. Run the following command to install dependencies:
|
||||
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
## 热加载扩展/Hot reload the extension
|
||||
|
||||
执行下面的命令来热加载扩展:
|
||||
|
||||
```
|
||||
npm run dev
|
||||
```
|
||||
|
||||
打开一个Chrome浏览器窗口,然后在浏览器地址栏输入`chrome://extensions/`,在打开的页面中,打开右上角`开发者模式`,点击`加载已解压的扩展程序`,选择`manifest_v3\dist`文件夹,即可加载扩展。
|
||||
|
||||
-----
|
||||
|
||||
Run the following command to hot reload the extension:
|
||||
|
||||
```
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Open a Chrome browser window, then enter `chrome://extensions/` in the browser address bar. On the opened page, open the `Developer mode` in the upper right corner, click `Load unpacked` and select the `manifest_v3\dist` folder to load the extension.
|
||||
|
||||
## 打包扩展/Package the extension
|
||||
|
||||
执行下面的命令来打包扩展:
|
||||
|
||||
```
|
||||
npm run package
|
||||
```
|
||||
|
||||
打包后会自动更新`ElectronJS`目录下的`EasySpider_zh.crx`文件,运行过程中的报错信息可以忽略。
|
||||
|
||||
-----
|
||||
|
||||
Run the following command to package the extension:
|
||||
|
||||
```
|
||||
npm run package
|
||||
```
|
||||
|
||||
After packaging, the `EasySpider_en.crx` file in the `ElectronJS` folder will be automatically updated, and the error messages during the running process can be ignored.
|
||||
|
||||
@@ -6,3 +6,4 @@ EasySpider_en
|
||||
EasySpider_zh
|
||||
EasySpider_en.crx
|
||||
EasySpider_zh.crx
|
||||
package-lock.json
|
||||
|
||||
Generated
+7057
-11586
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "EasySpider",
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.5",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "EasySpider",
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.5",
|
||||
"description": "EasySpider's chrome extension",
|
||||
"author": "Naibo Wang",
|
||||
"manifest_version": 3,
|
||||
|
||||
@@ -105,6 +105,12 @@ At the same time, the software is protected by patent rights. If you want to use
|
||||
<!-- - See the [Copyright Declaration Page](https://github.com/NaiboWang/EasySpider/blob/master/media/readme_back.md) here.
|
||||
-->
|
||||
|
||||
## 编译说明/Compilation Instructions
|
||||
|
||||
查看[编译说明](ElectronJS/README.md)。
|
||||
|
||||
Refer to [Compilation Instructions](ElectronJS/README.md).
|
||||
|
||||
## 中文界面截图
|
||||
|
||||
#### 软件界面示例
|
||||
|
||||
Reference in New Issue
Block a user