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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
URL της Σελίδας Πολιτικής Απορρήτου 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
}