Detector APIs Extension

The extension supports getting all APIs and CURL command when load a website.

ما هو Detector APIs Extension؟

Detector APIs Extension هو إضافة Chrome تم تطويرها بواسطة nguyenvantuan2391996، والميزة الرئيسية لها هي "The extension supports getting all APIs and CURL command when load a website.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Detector APIs Extension

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

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

                        The extension was developed by Tuan Nguyen, who is a software engineer.

The detector APIs extension doesn't show ads and doesn't send users' data anywhere. It's fully open-source: https://github.com/nguyenvantuan2391996/extensions-development/tree/master/detector-apis-extension

Before you install it, disable similar extensions. Enjoy watching!

Contact me at: [email protected]

Donate for me at: https://paypal.me/Newslette247

Version 1.0.4: adding detect api with post and put method                    

معلومات أساسية عن التمديد

الاسم Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
عنوان URL الرسمي https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
الوصف The extension supports getting all APIs and CURL command when load a website.
حجم الملف 53.53 KB
عدد التثبيتات 259
النسخة الحالية 1.0.4
آخر تحديث 2023-09-12
تاريخ النشر 2023-03-07
تقييم 5.00/5 مجموع تقييمات 2
المطور nguyenvantuan2391996
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Detector APIs Extension",
    "description": "The extension supports getting all APIs and CURL command when load a website.",
    "version": "1.0.4",
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": "images\/detector-apis-extension.png"
    },
    "icons": {
        "128": "images\/detector-apis-extension.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/constants.js",
                "js\/utils.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webRequest"
    ],
    "manifest_version": 3
}