Access Token Grabber

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

Vad är Access Token Grabber?

Access Token Grabber är en Chrome-tillägg utvecklad av herren.io, och dess huvudfunktion är "Grab an access token of a web request quickly and waste no more time finding it in dev-tools".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Access Token Grabber-förlängningens CRX-fil

Ladda ner Access Token Grabber-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

                        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                    

Grundläggande Information om Tillägg

Namn Access Token Grabber Access Token Grabber
ID dmdogmnoogmaabbeemfjolaohpimiiif
Officiell webbadress https://chromewebstore.google.com/detail/access-token-grabber/dmdogmnoogmaabbeemfjolaohpimiiif
Beskrivning Grab an access token of a web request quickly and waste no more time finding it in dev-tools
Filstorlek 689 KB
Antal Installationer 96
Aktuell Version 1.0
Senast Uppdaterad 2023-03-19
Publiceringsdatum 2023-03-19
Utvecklare herren.io
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}