Access Token Grabber

Grab an access token of a web request quickly and waste no more time finding it in dev-tools

Was ist Access Token Grabber?

Access Token Grabber ist eine Chrome-Erweiterung, die von herren.io entwickelt wurde, und ihr Hauptmerkmal ist "Grab an access token of a web request quickly and waste no more time finding it in dev-tools".

Erweiterungsscreenshots

screenshot
screenshot

Access Token Grabber-Erweiterungs-CRX-Datei herunterladen

Laden Sie Access Token Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Introducing the fastest way to get your web request access token - say goodbye to wasting time searching through dev-tools! This extension simplifies the process, allowing you to grab your access token quickly and easily                    

Grundlegende Informationen zur Erweiterung

Name Access Token Grabber Access Token Grabber
ID dmdogmnoogmaabbeemfjolaohpimiiif
Offizielle URL https://chromewebstore.google.com/detail/access-token-grabber/dmdogmnoogmaabbeemfjolaohpimiiif
Beschreibung Grab an access token of a web request quickly and waste no more time finding it in dev-tools
Dateigröße 689 KB
Installationsanzahl 96
Aktuelle Version 1.0
Letztes Update 2023-03-19
Veröffentlichungsdatum 2023-03-19
Entwickler herren.io
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Access Token Grabber",
    "description": "Grab an access token of a web request quickly and waste no more time finding it in dev-tools",
    "version": "1.0",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "webRequest",
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}