FindSomething
在网页的源代码或js中找到一些有趣的东西
What is FindSomething?
FindSomething is a Chrome extension developed by ResidualLaugh, and its main feature is "在网页的源代码或js中找到一些有趣的东西".
Extension Screenshots
Download FindSomething Extension CRX File
Download FindSomething extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
该工具用于快速在网页的html源码或js代码中提取一些有趣的信息,包括可能请求的资源、接口的url,可能请求的ip和域名,泄漏的证件号、手机号、邮箱等信息。欢迎一起交流,微信canxiao_xiao 功能变更详情文档:https://github.com/ResidualLaugh/FindSomething/blob/master/CHANGELOG.md
Extension Basic Information
Name | FindSomething |
ID | kfhniponecokdefffkpagipffdefeldb |
Official URL | https://chromewebstore.google.com/detail/findsomething/kfhniponecokdefffkpagipffdefeldb |
Description | 在网页的源代码或js中找到一些有趣的东西 |
File Size | 489 KB |
Installation Count | 15,238 |
Current Version | 2.0.17 |
Last Updated | 2024-01-17 |
Publish Date | 2021-09-05 |
Rating | 4.93/5 Total 27 Ratings |
Developer | ResidualLaugh |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ResidualLaugh/FindSomething |
Supported Languages | 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" } } |