Detector APIs Extension

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

Vad är Detector APIs Extension?

Detector APIs Extension är en Chrome-tillägg utvecklad av nguyenvantuan2391996, och dess huvudfunktion är "The extension supports getting all APIs and CURL command when load a website.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Detector APIs Extension-förlängningens CRX-fil

Ladda ner Detector APIs Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Detector APIs Extension Detector APIs Extension
ID gpaklkeejlpmejgppfbmfcgflhjpkalf
Officiell webbadress https://chromewebstore.google.com/detail/detector-apis-extension/gpaklkeejlpmejgppfbmfcgflhjpkalf
Beskrivning The extension supports getting all APIs and CURL command when load a website.
Filstorlek 53.53 KB
Antal Installationer 259
Aktuell Version 1.0.4
Senast Uppdaterad 2023-09-12
Publiceringsdatum 2023-03-07
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare nguyenvantuan2391996
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://nguyenvantuan2391996.github.io/game-development/privacy-policy.html
Stödda Språk 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
}