FindSomething
在网页的源代码或js中找到一些有趣的东西
什么是FindSomething?
FindSomething是由ResidualLaugh开发的Chrome扩展程序,该扩展的主要功能是“在网页的源代码或js中找到一些有趣的东西”。
扩展截图
下载FindSomething扩展crx文件
下载FindSomething扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
该工具用于快速在网页的html源码或js代码中提取一些有趣的信息,包括可能请求的资源、接口的url,可能请求的ip和域名,泄漏的证件号、手机号、邮箱等信息。欢迎一起交流,微信canxiao_xiao
功能变更详情文档:https://github.com/ResidualLaugh/FindSomething/blob/master/CHANGELOG.md 扩展基本信息
| 名称 | |
| ID | kfhniponecokdefffkpagipffdefeldb |
| 官方URL | https://chromewebstore.google.com/detail/findsomething/kfhniponecokdefffkpagipffdefeldb |
| 简介 | 在网页的源代码或js中找到一些有趣的东西 |
| 文件大小 | 489 KB |
| 安装次数 | 15,238 |
| 当前版本 | 2.0.17 |
| 更新时间 | 2024-01-17 |
| 上架时间 | 2021-09-05 |
| 评分 | 4.93/5 共27次评分 |
| 开发者 | ResidualLaugh |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/ResidualLaugh/FindSomething |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FindSomething",
"version": "2.0.17",
"manifest_version": 3,
"description": "\u5728\u7f51\u9875\u7684\u6e90\u4ee3\u7801\u6216js\u4e2d\u627e\u5230\u4e00\u4e9b\u6709\u8da3\u7684\u4e1c\u897f",
"permissions": [
"tabs",
"storage",
"unlimitedStorage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"file:\/\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icons\/icon_16.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons\/icon_16.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"default_popup": "popup.html"
}
} | |