Access Token Grabber

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

Что такое Access Token Grabber?

Access Token Grabber - это расширение Chrome, разработанное herren.io, и его основная функция - "Grab an access token of a web request quickly and waste no more time finding it in dev-tools".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Access Token Grabber

Скачайте файлы расширений Access Token Grabber в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Access Token Grabber Access Token Grabber
ID dmdogmnoogmaabbeemfjolaohpimiiif
Официальный URL https://chromewebstore.google.com/detail/access-token-grabber/dmdogmnoogmaabbeemfjolaohpimiiif
Описание Grab an access token of a web request quickly and waste no more time finding it in dev-tools
Размер файла 689 KB
Количество установок 96
Текущая Версия 1.0
Последнее Обновление 2023-03-19
Дата публикации 2023-03-19
Разработчик herren.io
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}