├── README.md ├── README_EN.md ├── img ├── icon.png ├── image1.jpg ├── image2.jpg ├── image3.jpg ├── image4.jpg ├── image5.jpg └── image6.jpg ├── index.html ├── manifest.json ├── umi.css └── umi.js /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
一款匿名的资产查询工具
5 | 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 | Report Bug 20 | · 21 | Ask Question 22 |
23 | 27 | 28 | 29 | > HackerBar是一款匿名资产查询插件,目前主要上架于[Chrome](https://www.google.com/chrome/)。 30 | 31 | 项目地址:https://github.com/HackerBar-Sec/HackerBar 32 | 33 | ## 安装 34 | 35 | ### 手动安装 36 | 37 | 下载版本:https://github.com/HackerBar-Sec/HackerBar/releases 38 | 39 | 1.下载并解压 40 | 41 | 2.打开 chrome://extensions/ 并且开启开发者模式 42 | 43 | 3.点击 `加载已解压的扩展程序` 选择该插件目录加载 44 | 45 |  46 | 47 | ### 商城安装 48 | 49 | 1.打开https://chrome.google.com/webstore/category/extensions谷歌商城 50 | 51 | 2.搜索`hackerbar` 52 | 53 | 3.下载到浏览器 54 | 55 |  56 | 57 | ## 功能 58 | 59 | ### 基本信息 60 | 61 |  62 | 63 | ### 端口服务 64 |  65 | 66 | ### 公司信息 67 |  68 | 69 | ### 资产测绘 70 | 71 |  -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
An anonymous asset query tool
5 | 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 | Report Bug 20 | · 21 | Ask Question 22 |
23 | 27 | 28 | 29 | > HackerBar is an anonymous asset query tool, currently mainly listed on [Chrome](https://www.google.com/chrome/)。 30 | 31 | Project Location:https://github.com/HackerBar-Sec/HackerBar 32 | 33 | ## Install 34 | 35 | ### Manual 36 | 37 | Releases:https://github.com/HackerBar-Sec/HackerBar/releases 38 | 39 | 1.Download and Unzip 40 | 41 | 2.Open `chrome://extensions/` and Enable developer mode 42 | 43 | 3.Click `Load unpacked` select the plugin directory to load 44 | 45 |  46 | 47 | ### Chrome Web Store 48 | 49 | 1.Open the `https://chrome.google.com/webstore/category/extensions` to Chrome Web Store 50 | 51 | 2.Search `hackerbar` 52 | 53 | 3.Add to Chrome 54 | 55 |  56 | 57 | ## Feature 58 | 59 | ### Basic Information 60 | 61 |  62 | 63 | ### Ports 64 |  65 | 66 | ### Company 67 |  68 | 69 | ### Cyberspace 70 | 71 |  72 | -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/icon.png -------------------------------------------------------------------------------- /img/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/image1.jpg -------------------------------------------------------------------------------- /img/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/image2.jpg -------------------------------------------------------------------------------- /img/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/image3.jpg -------------------------------------------------------------------------------- /img/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/image4.jpg -------------------------------------------------------------------------------- /img/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/image5.jpg -------------------------------------------------------------------------------- /img/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerBar-Sec/HackerBar/286cdb98d28b7a708f8b3a99256dd2135ee336ea/img/image6.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 13 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 3, 3 | "name": "HackerBar", 4 | "version": "1.1.0", 5 | "description": "安全工具", 6 | "icons": { 7 | "16": "./img/icon.png", 8 | "128": "./img/icon.png", 9 | "48": "./img/icon.png" 10 | }, 11 | "host_permissions": [ 12 | "*://*/*" 13 | ], 14 | "action": { 15 | "default_title": "HackerBar", 16 | "default_icon": "./img/icon.png", 17 | "default_popup": "index.html" 18 | }, 19 | "update_url": "https://hackerbar.org/extension/version_update", 20 | "permissions": [ 21 | "tabs" 22 | ], 23 | "content_scripts": [ 24 | { 25 | "js": [ 26 | "./umi.js" 27 | ], 28 | "matches": [ 29 | "http://*/*", 30 | "https://*/*", 31 | "