secretlint

Integrate secretlint into DevTools.

ما هو secretlint؟

secretlint هو إضافة Chrome تم تطويرها بواسطة azu، والميزة الرئيسية لها هي "Integrate secretlint into DevTools.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة secretlint

قم بتنزيل ملفات الامتداد secretlint بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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';"
}