secretlint

Integrate secretlint into DevTools.

secretlintคืออะไร?

secretlint เป็นส่วนขยายของ Chrome ที่พัฒนาโดย azu และคุณลักษณะหลักของมันคือ "Integrate secretlint into DevTools."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย secretlint

ดาวน์โหลดไฟล์ส่วนขยาย 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';"
}