secretlint

Integrate secretlint into DevTools.

secretlint là gì?

secretlint là một tiện ích mở rộng Chrome được phát triển bởi azu, và tính năng chính của nó là "Integrate secretlint into DevTools.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng secretlint

Tải xuống các tệp mở rộng secretlint dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên secretlint secretlint
ID hidpojbnemkajlnibhmeilpgoddkjjkf
URL Chính Thức https://chromewebstore.google.com/detail/secretlint/hidpojbnemkajlnibhmeilpgoddkjjkf
Mô tả Integrate secretlint into DevTools.
Kích Thước Tệp 664 KB
Số Lần Cài Đặt 248
Phiên Bản Hiện Tại 1.3.4
Cập Nhật Lần Cuối 2021-08-23
Ngày Phát Hành 2021-08-15
Nhà Phát Triển azu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/secretlint/webextension
URL Trang Trợ Giúp https://github.com/secretlint/webextension
Ngôn Ngữ Được Hỗ Trợ 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';"
}