Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vulhot committed Feb 16, 2022
1 parent 20da421 commit 95b448f
Show file tree
Hide file tree
Showing 9 changed files with 395 additions and 48 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The Fofa Pro View plugin for Chrome automatically checks whether Fofa Pro has an

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

**使用插件前,请确保 fofa.info 处于登陆状态**

## 安装

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

## 更新日志

2022-02-17

- 优化:修复 FOFA Pro 无法访问

2021-04-02

- 优化:对接新版FOFA Pro
Expand Down
Binary file modified build/.DS_Store
Binary file not shown.
81 changes: 40 additions & 41 deletions build/chrome/manifest.json
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,45 +1,44 @@
{
"name": "FOFA Pro View",
"version": "0.0.3",
"manifest_version": 2,
"description": "FOFA Pro view ",
"icons": {
"16": "icons/icon-16.png",
"128": "icons/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/background.js"
]
},
"permissions": [
"tabs",
"storage",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"name": "FOFA Pro View",
"version": "0.0.4",
"manifest_version": 2,
"description": "FOFA Pro view ",
"icons": {
"16": "icons/icon-16.png",
"128": "icons/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/livereload.js",
"scripts/background.js"
]
},
"permissions": [
"tabs",
"storage",
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_title": "FOFA Pro view",
"default_popup": "popup.html"
}
],
"browser_action": {
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_title": "FOFA Pro view",
"default_popup": "popup.html"
}
}


}
71 changes: 70 additions & 1 deletion build/chrome/scripts/background.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

95 changes: 94 additions & 1 deletion build/chrome/scripts/contentscript.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

79 changes: 78 additions & 1 deletion build/chrome/scripts/livereload.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 95b448f

Please sign in to comment.