Request duplicates

Find duplicates of XHR requests

Что такое Request duplicates?

Request duplicates - это расширение Chrome, разработанное pchelnikovmm, и его основная функция - "Find duplicates of XHR requests".

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

screenshot
screenshot

Скачать файл CRX расширения Request duplicates

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

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

                        Easily find duplicates of network requests.

Just install the extension, open browser devtools and click "RD" tab. Start testing your website and when the extension detect two or more identical requests, it will display them in request list. Basic functionality is absolute free! No registration required.

Features:
- find request duplicates;
- show start time of each found duplicate;
- filter duplicates by domain, configure time gap and compare requests input data option;
- explore details of requests.                    

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

Название Request duplicates Request duplicates
ID fghphjljkkfoepfkodibkbhkpobbbedm
Официальный URL https://chromewebstore.google.com/detail/request-duplicates/fghphjljkkfoepfkodibkbhkpobbbedm
Описание Find duplicates of XHR requests
Размер файла 581 KB
Количество установок 461
Текущая Версия 1.0.1
Последнее Обновление 2022-12-18
Дата публикации 2021-12-19
Рейтинг 5.00/5 Всего 1 оценок
Разработчик pchelnikovmm
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Request duplicates",
    "description": "Find duplicates of XHR requests",
    "version": "1.0.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "devtools_page": "devtools\/index.html",
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.google-analytics.com\/*"
    ],
    "icons": {
        "16": "devtools\/logo_16.png",
        "32": "devtools\/logo_32.png",
        "48": "devtools\/logo_48.png",
        "128": "devtools\/logo_128.png"
    }
}