Request duplicates

Find duplicates of XHR requests

什么是Request duplicates?

Request duplicates是由pchelnikovmm开发的Chrome扩展程序,该扩展的主要功能是“Find duplicates of XHR requests”。

扩展截图

screenshot
screenshot

下载Request duplicates扩展crx文件

下载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"
    }
}