Skip to content

Commit a6d1d72

Browse files
authored
Merge pull request #17 from fofapro/0.0.5
0.0.5
2 parents 20da421 + 2b7a8cf commit a6d1d72

File tree

22 files changed

+23752
-118
lines changed

22 files changed

+23752
-118
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ The Fofa Pro View plugin for Chrome automatically checks whether Fofa Pro has an
88

99
项目地址:https://github.com/fofapro/fofa_view
1010

11+
**使用插件前,请确保 fofa.info 处于登陆状态**
12+
1113
## 安装
1214

1315
![](images/1.png)
@@ -44,6 +46,10 @@ The Fofa Pro View plugin for Chrome automatically checks whether Fofa Pro has an
4446

4547
## 更新日志
4648

49+
2022-02-17
50+
51+
- 优化:修复 FOFA Pro 无法访问
52+
4753
2021-04-02
4854

4955
- 优化:对接新版FOFA Pro

build/.DS_Store

0 Bytes
Binary file not shown.

build/chrome/manifest.json

100755100644
Lines changed: 40 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
{
2-
"name": "FOFA Pro View",
3-
"version": "0.0.3",
4-
"manifest_version": 2,
5-
"description": "FOFA Pro view ",
6-
"icons": {
7-
"16": "icons/icon-16.png",
8-
"128": "icons/icon-128.png"
9-
},
10-
"default_locale": "en",
11-
"background": {
12-
"scripts": [
13-
"scripts/background.js"
14-
]
15-
},
16-
"permissions": [
17-
"tabs",
18-
"storage",
19-
"http://*/*",
20-
"https://*/*"
21-
],
22-
"content_scripts": [
23-
{
24-
"matches": [
2+
"name": "FOFA Pro View",
3+
"version": "0.0.4",
4+
"manifest_version": 2,
5+
"description": "FOFA Pro view ",
6+
"icons": {
7+
"16": "icons/icon-16.png",
8+
"128": "icons/icon-128.png"
9+
},
10+
"default_locale": "en",
11+
"background": {
12+
"scripts": [
13+
"scripts/livereload.js",
14+
"scripts/background.js"
15+
]
16+
},
17+
"permissions": [
18+
"tabs",
19+
"storage",
2520
"http://*/*",
2621
"https://*/*"
27-
],
28-
"js": [
29-
"scripts/contentscript.js"
30-
],
31-
"run_at": "document_end",
32-
"all_frames": false
22+
],
23+
"content_scripts": [
24+
{
25+
"matches": [
26+
"http://*/*",
27+
"https://*/*"
28+
],
29+
"js": [
30+
"scripts/contentscript.js"
31+
],
32+
"run_at": "document_end",
33+
"all_frames": false
34+
}
35+
],
36+
"browser_action": {
37+
"default_icon": {
38+
"19": "icons/icon-19.png",
39+
"38": "icons/icon-38.png"
40+
},
41+
"default_title": "FOFA Pro view",
42+
"default_popup": "popup.html"
3343
}
34-
],
35-
"browser_action": {
36-
"default_icon": {
37-
"19": "icons/icon-19.png",
38-
"38": "icons/icon-38.png"
39-
},
40-
"default_title": "FOFA Pro view",
41-
"default_popup": "popup.html"
42-
}
43-
}
44-
45-
44+
}

build/chrome/scripts/background.js

Lines changed: 70 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/chrome/scripts/contentscript.js

Lines changed: 94 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/chrome/scripts/livereload.js

Lines changed: 78 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)