secretlint

Integrate secretlint into DevTools.

什么是secretlint?

secretlint是由azu开发的Chrome扩展程序,该扩展的主要功能是“Integrate secretlint into DevTools.”。

扩展截图

screenshot

下载secretlint扩展crx文件

下载secretlint扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Secretlint detect credentials that are included in your request/response. 

Usage

1. Open browser's Developer Tools
2. ✅ Disable Cache
3. Reload page and secretlint report found credentials in your request/response.

Supported secrets

- API tokens: GitHub/Slack/SendGrid/AWS/GCP etc.
- Private keys
- IP Address
- Plain Authorization header

Source Code

- https://github.com/secretlint/webextension                    

扩展基本信息

名称 secretlint secretlint
ID hidpojbnemkajlnibhmeilpgoddkjjkf
官方URL https://chromewebstore.google.com/detail/secretlint/hidpojbnemkajlnibhmeilpgoddkjjkf
简介 Integrate secretlint into DevTools.
文件大小 664 KB
安装次数 248
当前版本 1.3.4
更新时间 2021-08-23
上架时间 2021-08-15
开发者 azu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/secretlint/webextension
帮助页面URL https://github.com/secretlint/webextension
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.3.4",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "32": "images\/icon-32.png",
        "96": "images\/icon-96.png",
        "192": "images\/icon-192.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/contentScript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "pages\/dev_tools.html",
    "browser_action": {
        "default_icon": {
            "32": "images\/icon-32.png",
            "96": "images\/icon-96.png",
            "192": "images\/icon-192.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/settings.html"
    },
    "options_ui": {
        "page": "pages\/settings.html"
    },
    "permissions": [
        "",
        "webNavigation",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}