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
官方網址 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';"
}