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
官方網址 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"
    }
}