Skip to content

Commit 76fb3c0

Browse files
committed
v1.0.0
1 parent 3662f0e commit 76fb3c0

22 files changed

Lines changed: 9883 additions & 2 deletions

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

README.md

Lines changed: 55 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,55 @@
1-
# fofa-search
2-
这是基于vue3+ant开发的Chrome浏览器插件,Chrome V3版本
1+
# Fofa Search
2+
3+
## 简介
4+
5+
本插件所采用的技术为vue3+ant开发,调用api如下
6+
7+
```
8+
https://fofa.info/hosts/
9+
https://amap.fofa.info/host/
10+
```
11+
12+
***如果插件中两个ip不一致那么只有一种可能此站点是使用了cdn技术**
13+
14+
## Dev开发调试
15+
16+
安装依赖
17+
18+
```bash
19+
npm install or cnpm install or yarn install
20+
```
21+
22+
## dev开发
23+
24+
```bash
25+
npm run build-watch or npm run server
26+
```
27+
28+
## Prod生产环境
29+
30+
```bash
31+
npm run build
32+
```
33+
34+
## Eslint语法检查
35+
36+
```bash
37+
npm run lint
38+
```
39+
40+
## 导入步骤
41+
42+
![image-20230202141232092](images/image-20230202141232092.png)
43+
44+
选择生成的dist目录下面的文件,单机确定就可以。
45+
***目前支持Edge和Chrome,火狐目前的V3版本是测试阶段暂时不支持后面官方上线后将会进行适配。**
46+
47+
![image-20230202141548827](images/image-20230202141548827.png)
48+
49+
## 发布
50+
51+
- 目前已在chrome尝试上架发布。
52+
53+
## 时间线
54+
55+
- 2023-02-02 Github开源发布,Chrome商店提交审核上架。

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

images/image-20230202141232092.png

135 KB
Loading

images/image-20230202141548827.png

147 KB
Loading

jsconfig.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "esnext",
5+
"baseUrl": "./",
6+
"moduleResolution": "node",
7+
"paths": {
8+
"@/*": [
9+
"src/*"
10+
]
11+
},
12+
"lib": [
13+
"esnext",
14+
"dom",
15+
"dom.iterable",
16+
"scripthost"
17+
]
18+
}
19+
}

0 commit comments

Comments
 (0)