From 326c2e722ef38ae82817c3b4065102c8ece21e43 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Thu, 29 Feb 2024 17:43:26 +0530 Subject: [PATCH 01/23] feat: add summary export components --- package-lock.json | 50 +++++++++- package.json | 1 - packages/extension/package.json | 3 +- packages/extension/src/manifest.json | 2 +- .../extension/src/utils/downloadReport.ts | 88 +++++++++++++++++ .../devtools/components/cookies/index.tsx | 24 +++-- packages/extension/src/view/report/app.css | 3 + packages/extension/src/view/report/app.tsx | 99 +++++++++++++++++++ packages/extension/src/view/report/index.html | 11 +++ packages/extension/src/view/report/index.tsx | 34 +++++++ packages/extension/webpack.config.cjs | 34 ++++++- 11 files changed, 336 insertions(+), 13 deletions(-) create mode 100644 packages/extension/src/utils/downloadReport.ts create mode 100644 packages/extension/src/view/report/app.css create mode 100644 packages/extension/src/view/report/app.tsx create mode 100644 packages/extension/src/view/report/index.html create mode 100644 packages/extension/src/view/report/index.tsx diff --git a/package-lock.json b/package-lock.json index c187b3e9a..6a2c5436e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13237,6 +13237,20 @@ "dev": true, "license": "MIT" }, + "node_modules/html-inline-script-webpack-plugin": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/html-inline-script-webpack-plugin/-/html-inline-script-webpack-plugin-3.2.1.tgz", + "integrity": "sha512-PEj9Ve31BE0dva6eTD6wHMOztgIdPxF6gx3wad7ohBkCn7MXpuUvPC9t5ThMJ2NrVi1jWGBYU76DfoS+8dabRw==", + "dev": true, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "html-webpack-plugin": "^5.0.0", + "webpack": "^5.0.0" + } + }, "node_modules/html-minifier-terser": { "version": "6.1.0", "dev": true, @@ -25062,7 +25076,8 @@ }, "devDependencies": { "@types/react-copy-to-clipboard": "^5.0.4", - "devtools-protocol": "^0.0.1236148" + "devtools-protocol": "^0.0.1236148", + "html-inline-script-webpack-plugin": "^3.2.1" } }, "packages/extension/node_modules/devtools-protocol": { @@ -25099,6 +25114,31 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } + }, + "packages/report": { + "name": "@ps-analysis-tool/report", + "version": "0.5.1", + "extraneous": true, + "license": "Apache-2.0", + "dependencies": { + "@ps-analysis-tool/common": "*", + "@ps-analysis-tool/design-system": "*", + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/preset-env": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@babel/preset-typescript": "^7.22.15", + "babel-loader": "^9.1.3", + "html-inline-script-webpack-plugin": "^3.2.1", + "react-dev-utils": "^12.0.1", + "webpack": "^5.88.2", + "webpack-cli": "^5.1.4", + "webpack-dev-server": "^4.15.1", + "webpackbar": "^5.0.2" + } } }, "dependencies": { @@ -27549,6 +27589,7 @@ "devtools-protocol": "^0.0.1236148", "fast-xml-parser": "^4.3.2", "file-saver": "^2.0.5", + "html-inline-script-webpack-plugin": "^3.2.1", "p-queue": "^7.3.4", "re-resizable": "^6.9.9", "react": "^18.2.0", @@ -33933,6 +33974,13 @@ "version": "2.0.2", "dev": true }, + "html-inline-script-webpack-plugin": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/html-inline-script-webpack-plugin/-/html-inline-script-webpack-plugin-3.2.1.tgz", + "integrity": "sha512-PEj9Ve31BE0dva6eTD6wHMOztgIdPxF6gx3wad7ohBkCn7MXpuUvPC9t5ThMJ2NrVi1jWGBYU76DfoS+8dabRw==", + "dev": true, + "requires": {} + }, "html-minifier-terser": { "version": "6.1.0", "dev": true, diff --git a/package.json b/package.json index 8e2ccb331..36a9fa02b 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,6 @@ "cli:prebuild": "node ./scripts/delete-build-artifacts.cjs", "cli:dev": "tsc-watch --build", "cli:build": "npm run cli:prebuild && tsc --build", - "cli-dashboard:start": "npm run dev --workspace=@ps-analysis-tool/cli-dashboard", "cli-dashboard:dev": "npm run dev --workspace=@ps-analysis-tool/cli-dashboard", "cli-dashboard:build": "npm run build --workspace=@ps-analysis-tool/cli-dashboard", "cli": "node dist/cli/index.js", diff --git a/packages/extension/package.json b/packages/extension/package.json index c74aed332..921056139 100644 --- a/packages/extension/package.json +++ b/packages/extension/package.json @@ -40,6 +40,7 @@ }, "devDependencies": { "@types/react-copy-to-clipboard": "^5.0.4", - "devtools-protocol": "^0.0.1236148" + "devtools-protocol": "^0.0.1236148", + "html-inline-script-webpack-plugin": "^3.2.1" } } diff --git a/packages/extension/src/manifest.json b/packages/extension/src/manifest.json index c32e2e933..d67a5c6b3 100644 --- a/packages/extension/src/manifest.json +++ b/packages/extension/src/manifest.json @@ -37,7 +37,7 @@ }, "web_accessible_resources": [ { - "resources": ["assets/data/*.json", "data/*json"], + "resources": ["assets/data/*.json", "data/*json", "report/index.html"], "matches": ["*://*/*"] } ] diff --git a/packages/extension/src/utils/downloadReport.ts b/packages/extension/src/utils/downloadReport.ts new file mode 100644 index 000000000..054714d5c --- /dev/null +++ b/packages/extension/src/utils/downloadReport.ts @@ -0,0 +1,88 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { + prepareCookieStatsComponents, + prepareCookiesCount, + prepareFrameStatsComponent, +} from '@ps-analysis-tool/design-system'; +import type { DataMapping } from '@ps-analysis-tool/design-system/src/components/cookiesLanding/landingHeader'; +import { saveAs } from 'file-saver'; + +/** + * + * @param tabCookies + * @param tabFrames + * @param description + */ +export default async function downloadReport( + tabCookies: any, + tabFrames: any, + description: any +) { + const htmlText = await (await fetch('../report/index.html')).text(); + const parser = new DOMParser(); + const reportDom = parser.parseFromString(htmlText, 'text/html'); + + const cookieStats = prepareCookiesCount(tabCookies); + const cookiesStatsComponents = prepareCookieStatsComponents(cookieStats); + const frameStateCreator = prepareFrameStatsComponent(tabFrames, tabCookies); + const cookieClassificationDataMapping: DataMapping[] = [ + { + title: 'Total cookies', + count: cookieStats.total, + data: cookiesStatsComponents.legend, + }, + { + title: '1st party cookies', + count: cookieStats.firstParty.total, + data: cookiesStatsComponents.firstParty, + }, + { + title: '3rd party cookies', + count: cookieStats.thirdParty.total, + data: cookiesStatsComponents.thirdParty, + }, + ]; + const blockedCookieDataMapping: DataMapping[] = [ + { + title: 'Blocked cookies', + count: cookieStats.blockedCookies.total, + data: cookiesStatsComponents.blocked, + }, + ]; + + //injections + const script = reportDom.createElement('script'); + const code = `window.PSAT_DATA = ${JSON.stringify({ + cookieClassificationDataMapping, + tabCookies, + cookiesStatsComponents, + tabFrames, + showInfoIcon: true, + showHorizontalMatrix: true, + description, + blockedCookieDataMapping, + showBlockedInfoIcon: true, + frameStateCreator, + })}`; + script.text = code; + reportDom.head.appendChild(script); + + const injectedHtmlText = `${reportDom.head.innerHTML}${reportDom.body.innerHTML}`; + + const html = new Blob([injectedHtmlText]); + saveAs(html, 'report.html'); +} diff --git a/packages/extension/src/view/devtools/components/cookies/index.tsx b/packages/extension/src/view/devtools/components/cookies/index.tsx index 69e1c6804..0411a0deb 100644 --- a/packages/extension/src/view/devtools/components/cookies/index.tsx +++ b/packages/extension/src/view/devtools/components/cookies/index.tsx @@ -34,6 +34,7 @@ import { import { useSettingsStore } from '../../stateProviders/syncSettingsStore'; import { useCookieStore } from '../../stateProviders/syncCookieStore'; import CookiesListing from './cookiesListing'; +import downloadReport from '../../../../utils/downloadReport'; interface CookiesProps { setFilteredCookies: React.Dispatch; @@ -126,14 +127,21 @@ const Cookies = ({ setFilteredCookies }: CookiesProps) => { {selectedFrame ? ( ) : ( - + <> + + + )} ); diff --git a/packages/extension/src/view/report/app.css b/packages/extension/src/view/report/app.css new file mode 100644 index 000000000..b5c61c956 --- /dev/null +++ b/packages/extension/src/view/report/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/packages/extension/src/view/report/app.tsx b/packages/extension/src/view/report/app.tsx new file mode 100644 index 000000000..db82933b5 --- /dev/null +++ b/packages/extension/src/view/report/app.tsx @@ -0,0 +1,99 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * External dependencies + */ +import React, { useEffect, useState } from 'react'; +/** + * Internal dependencies + */ +import './app.css'; +import { + CookiesLandingContainer, + CookiesMatrix, +} from '@ps-analysis-tool/design-system'; + +const App = () => { + const [data, setData] = useState(null); + + useEffect(() => { + //@ts-ignore + if (window.PSAT_DATA) { + //@ts-ignore + setData(window.PSAT_DATA); + } + }, []); + + if (data === null) { + return

No data attached

; + } + + return ( +
+ + + + + {data.cookiesStatsComponents.blockedCookiesLegend.length > 0 && ( + <> + + + )} + + + + +
+ ); +}; + +export default App; diff --git a/packages/extension/src/view/report/index.html b/packages/extension/src/view/report/index.html new file mode 100644 index 000000000..4da392046 --- /dev/null +++ b/packages/extension/src/view/report/index.html @@ -0,0 +1,11 @@ + + + + + + Report + + +
+ + diff --git a/packages/extension/src/view/report/index.tsx b/packages/extension/src/view/report/index.tsx new file mode 100644 index 000000000..24c1be774 --- /dev/null +++ b/packages/extension/src/view/report/index.tsx @@ -0,0 +1,34 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * External dependencies + */ +import React from 'react'; +import { createRoot } from 'react-dom/client'; + +/** + * Internal dependencies + */ +import App from './app'; + +document.addEventListener('DOMContentLoaded', () => { + const root = document.getElementById('root'); + + if (root) { + createRoot(root).render(); + } +}); diff --git a/packages/extension/webpack.config.cjs b/packages/extension/webpack.config.cjs index 6f954aed0..85442e2bd 100644 --- a/packages/extension/webpack.config.cjs +++ b/packages/extension/webpack.config.cjs @@ -15,6 +15,7 @@ */ const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); +const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin'); const CopyPlugin = require('copy-webpack-plugin'); const WebpackBar = require('webpackbar'); const commonConfig = require('../../webpack.shared.cjs'); @@ -98,4 +99,35 @@ const popup = { ...commonConfig, }; -module.exports = [root, devTools, popup]; +const report = { + entry: { + index: './src/view/report/index.tsx', + }, + output: { + path: path.resolve(__dirname, '../../dist/extension/report'), + filename: '[name].js', + }, + devServer: { + static: { + directory: path.join(__dirname, './dist'), + }, + compress: true, + port: 9000, + }, + plugins: [ + new WebpackBar({ + name: 'Report', + color: '#357B66', + }), + new HtmlWebpackPlugin({ + title: 'Report', + template: './src/view/report/index.html', + filename: 'index.html', + inject: true, + }), + new HtmlInlineScriptPlugin(), + ], + ...commonConfig, +}; + +module.exports = [root, devTools, popup, report]; From d20bac4e6b66ee2bbcd8505a8679bc2f676c5331 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Wed, 6 Mar 2024 13:15:11 +0530 Subject: [PATCH 02/23] ref:report generation --- packages/extension/src/view/report/app.tsx | 18 ++---------------- packages/extension/src/view/report/index.tsx | 4 +++- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/packages/extension/src/view/report/app.tsx b/packages/extension/src/view/report/app.tsx index db82933b5..ac8dc0bdb 100644 --- a/packages/extension/src/view/report/app.tsx +++ b/packages/extension/src/view/report/app.tsx @@ -17,7 +17,7 @@ /** * External dependencies */ -import React, { useEffect, useState } from 'react'; +import React from 'react'; /** * Internal dependencies */ @@ -27,21 +27,7 @@ import { CookiesMatrix, } from '@ps-analysis-tool/design-system'; -const App = () => { - const [data, setData] = useState(null); - - useEffect(() => { - //@ts-ignore - if (window.PSAT_DATA) { - //@ts-ignore - setData(window.PSAT_DATA); - } - }, []); - - if (data === null) { - return

No data attached

; - } - +const App = ({ data }: { data: any }) => { return (
{ const root = document.getElementById('root'); + //@ts-ignore custom data attached to window breaks types + const data = window.PSAT_DATA; if (root) { - createRoot(root).render(); + createRoot(root).render(); } }); From 39c6d7449a10d60cff1aa573c6eb3ccfe0300e5d Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Wed, 6 Mar 2024 13:34:25 +0530 Subject: [PATCH 03/23] style-fix: redesign download report button --- packages/extension/src/utils/downloadReport.ts | 7 +------ .../src/view/devtools/components/cookies/index.tsx | 8 ++++---- packages/extension/src/view/report/app.tsx | 1 - 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/packages/extension/src/utils/downloadReport.ts b/packages/extension/src/utils/downloadReport.ts index 054714d5c..d7e6dabc2 100644 --- a/packages/extension/src/utils/downloadReport.ts +++ b/packages/extension/src/utils/downloadReport.ts @@ -27,11 +27,7 @@ import { saveAs } from 'file-saver'; * @param tabFrames * @param description */ -export default async function downloadReport( - tabCookies: any, - tabFrames: any, - description: any -) { +export default async function downloadReport(tabCookies: any, tabFrames: any) { const htmlText = await (await fetch('../report/index.html')).text(); const parser = new DOMParser(); const reportDom = parser.parseFromString(htmlText, 'text/html'); @@ -73,7 +69,6 @@ export default async function downloadReport( tabFrames, showInfoIcon: true, showHorizontalMatrix: true, - description, blockedCookieDataMapping, showBlockedInfoIcon: true, frameStateCreator, diff --git a/packages/extension/src/view/devtools/components/cookies/index.tsx b/packages/extension/src/view/devtools/components/cookies/index.tsx index 4c55e9cb9..2db769b31 100644 --- a/packages/extension/src/view/devtools/components/cookies/index.tsx +++ b/packages/extension/src/view/devtools/components/cookies/index.tsx @@ -137,11 +137,11 @@ const Cookies = ({ setFilteredCookies }: CookiesProps) => { ) : ( <> - + text="Download report" + /> { /> From 21794cb358d134b0adbcee354f45022ac6d51192 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Fri, 8 Mar 2024 12:22:45 +0530 Subject: [PATCH 04/23] fix:no of frames showing up --- .../src/components/cookiesLanding/landingHeader/index.tsx | 2 +- packages/extension/src/utils/downloadReport.ts | 2 +- .../extension/src/view/devtools/components/cookies/index.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/design-system/src/components/cookiesLanding/landingHeader/index.tsx b/packages/design-system/src/components/cookiesLanding/landingHeader/index.tsx index 5123927a4..703d0f57b 100644 --- a/packages/design-system/src/components/cookiesLanding/landingHeader/index.tsx +++ b/packages/design-system/src/components/cookiesLanding/landingHeader/index.tsx @@ -43,7 +43,7 @@ const LandingHeader = ({ dataMapping = [] }: LandingHeaderProps) => {
{dataMapping.map((circleData, index) => { return ( -
+
{ <> + )} {menuData.map((item, index) => (
{ + const { url, tabCookies, tabFrames } = useCookie(({ state }) => ({ + tabCookies: state.tabCookies, + tabFrames: state.tabFrames, + url: state.tabUrl, + })); + + const { libraryMatches, showLoader } = useLibraryDetectionContext( + ({ state }) => ({ + libraryMatches: state.libraryMatches, + showLoader: state.showLoader, + }) + ); const sections: Array = useMemo( () => [ { @@ -73,8 +89,13 @@ const AssembledCookiesLanding = () => { return ( <> - { + if (tabCookies && tabFrames && libraryMatches && url) { + downloadReport(url, tabCookies, tabFrames, libraryMatches); + } + }} menuData={menuData} scrollContainerId="cookies-landing-scroll-container" /> diff --git a/packages/extension/src/view/devtools/components/cookies/cookieLanding/reportDownload.tsx b/packages/extension/src/view/devtools/components/cookies/cookieLanding/reportDownload.tsx deleted file mode 100644 index 03f740aa5..000000000 --- a/packages/extension/src/view/devtools/components/cookies/cookieLanding/reportDownload.tsx +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright 2023 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * External dependencies. - */ -import React from 'react'; -import { Button } from '@ps-analysis-tool/design-system'; -import { useLibraryDetectionContext } from '@ps-analysis-tool/library-detection'; -/** - * Internal dependencies. - */ -import downloadReport from '../../../../../utils/downloadReport'; -import { useCookie } from '../../../stateProviders'; - -const ReportDownloadButton = () => { - const { url, tabCookies, tabFrames } = useCookie(({ state }) => ({ - tabCookies: state.tabCookies, - tabFrames: state.tabFrames, - url: state.tabUrl, - })); - - const { libraryMatches, showLoader } = useLibraryDetectionContext( - ({ state }) => ({ - libraryMatches: state.libraryMatches, - showLoader: state.showLoader, - }) - ); - - return ( - )} {menuData.map((item, index) => ( From b73957d5a61a0282da05a96ab6ce8453b8d7950f Mon Sep 17 00:00:00 2001 From: sayedtaqui Date: Mon, 8 Apr 2024 18:23:38 +0530 Subject: [PATCH 18/23] Fix infinite loading issue when a new tab is opened The issue originally started in PR#562 when we were trying to fix the case when the user visits a 404 page and the library detection section goes into infinite loop --- .../library-detection/src/core/stateProvider/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/library-detection/src/core/stateProvider/index.tsx b/packages/library-detection/src/core/stateProvider/index.tsx index d533665ea..cef91e36f 100644 --- a/packages/library-detection/src/core/stateProvider/index.tsx +++ b/packages/library-detection/src/core/stateProvider/index.tsx @@ -126,8 +126,11 @@ export const LibraryDetectionProvider = ({ children }: PropsWithChildren) => { ); const onNavigatedListener = useCallback( - ({ frameId }: chrome.webNavigation.WebNavigationFramedCallbackDetails) => { - if (frameId === 0) { + ({ + frameId, + tabId: _tabId, + }: chrome.webNavigation.WebNavigationFramedCallbackDetails) => { + if (frameId === 0 && Number(tabId) === Number(_tabId)) { setLibraryMatches(initialLibraryMatches); setIsCurrentTabLoading(true); setShowLoader(true); @@ -135,7 +138,7 @@ export const LibraryDetectionProvider = ({ children }: PropsWithChildren) => { setIsInitialDataUpdated(false); } }, - [] + [tabId] ); const onCompleted = useCallback( From d69e644e4903452c96a4d5ecf69c73a35513f375 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Mon, 8 Apr 2024 18:44:46 +0530 Subject: [PATCH 19/23] ref:refactor report view --- .../view/report/components/framesSection.tsx | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/packages/extension/src/view/report/components/framesSection.tsx b/packages/extension/src/view/report/components/framesSection.tsx index 23b9d5451..a55c0b602 100644 --- a/packages/extension/src/view/report/components/framesSection.tsx +++ b/packages/extension/src/view/report/components/framesSection.tsx @@ -20,7 +20,8 @@ import React from 'react'; import { CookiesLandingWrapper, - CookiesMatrix, + LEGEND_DESCRIPTION, + MatrixContainer, } from '@ps-analysis-tool/design-system'; /** * Internal dependencies @@ -34,18 +35,24 @@ const CookiesSection = () => { return <>; } + const _data = data.frameStateCreator.legend.map((component) => { + const legendDescription = LEGEND_DESCRIPTION[component.label] || ''; + return { + ...component, + description: legendDescription, + title: component.label, + containerClasses: '', + }; + }); + return ( - From 109e197f4e5704f8a686d58f905d8c16662e2040 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Tue, 9 Apr 2024 13:09:55 +0530 Subject: [PATCH 20/23] ref: add unit test for report view --- .../extension/src/view/report/tests/app.tsx | 79 + .../src/view/report/tests/data.mock.ts | 3920 +++++++++++++++++ 2 files changed, 3999 insertions(+) create mode 100644 packages/extension/src/view/report/tests/app.tsx create mode 100644 packages/extension/src/view/report/tests/data.mock.ts diff --git a/packages/extension/src/view/report/tests/app.tsx b/packages/extension/src/view/report/tests/app.tsx new file mode 100644 index 000000000..6c231de25 --- /dev/null +++ b/packages/extension/src/view/report/tests/app.tsx @@ -0,0 +1,79 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +/** + * External dependencies. + */ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import { noop } from '@ps-analysis-tool/common'; +import '@testing-library/jest-dom'; + +/** + * Internal dependencies. + */ +import App from '../app'; +import data from './data.mock'; +import { useData } from '../stateProviders/data'; + +jest.mock('../stateProviders/data', () => ({ + useData: jest.fn(), +})); +const mockUseDataStore = useData as jest.Mock; + +describe('Report View', () => { + globalThis.chrome = { + tabs: { + //@ts-ignore + onUpdated: { + addListener: noop, + removeListener: noop, + }, + }, + devtools: { + inspectedWindow: { + //@ts-ignore + onResourceAdded: { + addListener: noop, + removeListener: noop, + }, + getResources: noop, + }, + }, + webNavigation: { + //@ts-ignore + onErrorOccurred: { + addListener: noop, + removeListener: noop, + }, + //@ts-ignore + onBeforeNavigate: { + addListener: noop, + removeListener: noop, + }, + //@ts-ignore + onCompleted: { + addListener: noop, + removeListener: noop, + }, + }, + }; + + it('Should add chrome API mocks ', async () => { + mockUseDataStore.mockReturnValue(data); + render(); + expect(await screen.findByText('Total cookies')).toBeInTheDocument(); + }); +}); diff --git a/packages/extension/src/view/report/tests/data.mock.ts b/packages/extension/src/view/report/tests/data.mock.ts new file mode 100644 index 000000000..0b0f6aa21 --- /dev/null +++ b/packages/extension/src/view/report/tests/data.mock.ts @@ -0,0 +1,3920 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +const data = { + cookieClassificationDataMapping: [ + { + title: 'Total cookies', + count: 28, + data: [ + { + label: 'Functional', + count: 3, + color: '#5CC971', + countClassName: 'text-functional', + }, + { + label: 'Marketing', + count: 5, + color: '#F3AE4E', + countClassName: 'text-uncategorised', + }, + { + label: 'Analytics', + count: 12, + color: '#4C79F4', + countClassName: 'text-uncategorised', + }, + { + label: 'Uncategorized', + count: 8, + color: '#EC7159', + countClassName: 'text-uncategorised', + }, + ], + }, + { + title: '1st party cookies', + count: 19, + data: [ + { + count: 0, + color: '#5CC971', + }, + { + count: 2, + color: '#F3AE4E', + }, + { + count: 12, + color: '#4C79F4', + }, + { + count: 5, + color: '#EC7159', + }, + ], + }, + { + title: '3rd party cookies', + count: 9, + data: [ + { + count: 3, + color: '#5CC971', + }, + { + count: 3, + color: '#F3AE4E', + }, + { + count: 0, + color: '#4C79F4', + }, + { + count: 3, + color: '#EC7159', + }, + ], + }, + ], + tabCookies: { + '_gcl_aurtcamp.com/': { + parsedCookie: { + name: '_gcl_au', + value: '1.1.1643004070.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2024-07-02T05:40:12.000Z', + partitionKey: '', + size: 32, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: 'Google', + category: 'Marketing', + name: '_gcl_au', + domain: '', + description: + 'Used by Google AdSense for experimenting with advertisement efficiency across websites using their services.', + retention: '3 months', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949254, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949269, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949295, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949301, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949307, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949311, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949316, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949320, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949719, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950078, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950096, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960181, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_user_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_user_id', + value: 'null', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 15, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_user_id', + domain: '.trustpilot.com', + description: + ' This cookie helps track visitor usage, events, target marketing, and can also measure application performance and stability.', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949255, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949269, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949295, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949301, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949307, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949311, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949316, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949320, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950078, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950096, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960181, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_group_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_group_id', + value: 'null', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 16, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_group_id', + domain: '.trustpilot.com', + description: 'Track visitor usage and events within the website', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949256, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949269, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949295, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949302, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949308, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949312, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949316, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949320, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950078, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950096, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960181, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_anonymous_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_anonymous_id', + value: '%220eae481f-71ad-4118-9309-1f60ae8f9f6d%22', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 58, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_anonymous_id', + domain: '.trustpilot.com', + description: + 'Used for Analytics and help count how many people visit a certain site by tracking if you have visited before', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949256, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949269, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949295, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949302, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949308, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949312, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949316, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949320, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950078, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960181, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_gartcamp.com/': { + parsedCookie: { + name: '_ga', + value: 'GA1.1.1593307359.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-13T13:12:29.716Z', + partitionKey: '', + size: 30, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: '_ga', + domain: 'google-analytics.com (3rd party) or', + description: 'ID used to identify users', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949256, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949269, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949295, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949302, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949308, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949312, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949317, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960182, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'FPIDrtcamp.com/': { + parsedCookie: { + name: 'FPID', + value: + 'FPID2.2.BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: true, + samesite: '', + expires: '2025-05-13T13:12:31.895Z', + partitionKey: '', + size: 71, + priority: 'Medium', + httpOnly: true, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: 'FPID', + domain: '', + description: + "Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.", + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949257, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949270, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949296, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949302, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949308, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949312, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949317, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960182, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950364, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581950370, + }, + ], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'FPAUrtcamp.com/': { + parsedCookie: { + name: 'FPAU', + value: '1.1.1643004070.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: '2024-07-02T05:40:12.363Z', + partitionKey: '', + size: 29, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Marketing', + name: 'FPAU', + domain: '', + description: + 'Assigns a specific ID to the visitor. This allows the website to determine the number of specific user-visits for analysis and statistics.', + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949257, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949270, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949274, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949296, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949303, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949309, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949312, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949317, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960182, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950364, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581950370, + }, + ], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'track_uidrtcamp.com/': { + parsedCookie: { + name: 'track_uid', + value: 'df985b92-a92b-7c79-35c7-3030565fd182', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T13:12:31.000Z', + partitionKey: '', + size: 45, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949259, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949270, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949272, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949297, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949303, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949309, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949313, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949318, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950157, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960183, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'stg_returning_visitorrtcamp.com/': { + parsedCookie: { + name: 'stg_returning_visitor', + value: 'Wed%2C%2003%20Apr%202024%2008:00:23%20GMT', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2025-04-03T08:00:23.000Z', + partitionKey: '', + size: 62, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'Strict', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_returning_visitor', + domain: '', + description: + 'Determines if the visitor has already been to your website — they are returning visitors.', + retention: '365 days', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949260, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949270, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949273, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949297, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949303, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949309, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949313, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949318, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: true, + timeStamp: 1712581950096, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950158, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960183, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + 'FPLCrtcamp.com/': { + parsedCookie: { + name: 'FPLC', + value: + '5b%2FTP6HSsajlpXL%2B%2FZ2PpaY0zwdmiixUEsbGOx7OwPE%2B7wbuCk0KHjp8c7CySfrPf%2BNo9irtCirjzRBfW32pyNnIyfc%2BFGPClXEinxr2JOBE2cTh%2FxRiQo%2BpVwaqag%3D%3D', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: '2024-04-08T13:34:06.788Z', + partitionKey: '', + size: 152, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: 'FPLC', + domain: '', + description: + 'This FPLC cookie is the cross-domain linker cookie hashed from the FPID cookie. It’s not HttpOnly, which means it can be read with JavaScript. It has a relatively short lifetime, just 20 hours.', + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949260, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949270, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949273, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949298, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949303, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949309, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949313, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949319, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950158, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960183, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_pk_id.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59rtcamp.com/': { + parsedCookie: { + name: '_pk_id.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59', + value: 'e232543d43714eb7.1712122813.8.1712581960.1712581950.', + domain: 'rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: 'lax', + expires: '2025-05-06T13:12:40.000Z', + partitionKey: '', + size: 100, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'lax', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + }, + analytics: { + platform: 'Matomo', + category: 'Analytics', + name: '_pk_id*', + domain: '', + description: + 'Used to store a few details about the user such as the unique visitor ID', + retention: '13 months', + dataController: 'Matomo', + gdprUrl: 'https://matomo.org/privacy-policy/', + wildcard: '1', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949260, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949270, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949273, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949298, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949304, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949310, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949314, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949319, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949321, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950079, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: true, + timeStamp: 1712581950096, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950158, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960186, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + '_parsely_visitorrtcamp.com/': { + parsedCookie: { + name: '_parsely_visitor', + value: + '{%22id%22:%22pid=55cc8d59-04cf-4bcd-aaca-5e6bb9ca7cc4%22%2C%22session_count%22:9%2C%22last_session_ts%22:1712581949558}', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-08T23:12:29.000Z', + partitionKey: '', + size: 135, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949262, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949271, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949273, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949298, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949304, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949310, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949314, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949319, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949322, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949721, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950080, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950098, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950158, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960184, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'stg_last_interactionrtcamp.com/': { + parsedCookie: { + name: 'stg_last_interaction', + value: 'Mon%2C%2008%20Apr%202024%2013:12:40%20GMT', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2025-04-08T13:12:40.000Z', + partitionKey: false, + size: 61, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'strict', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_last_interaction', + domain: '', + description: + "Determines whether the last visitor's session is still in progress or a new session has started.", + retention: '365 days', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949262, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949271, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949273, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949299, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949305, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949310, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949314, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949320, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949322, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950080, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: true, + timeStamp: 1712581950096, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950159, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960185, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + '_ga_7HKDVLRRV4rtcamp.com/': { + parsedCookie: { + name: '_ga_7HKDVLRRV4', + value: 'GS1.1.1712581949.10.0.1712581956.0.0.1647693890', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-13T13:12:36.795Z', + partitionKey: '', + size: 61, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: '_ga_*', + domain: 'google-analytics.com (3rd party) or ', + description: 'ID used to identify users', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '1', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '73', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712581949262, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '74', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712581949271, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '75', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712581949273, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '76', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712581949275, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '79', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712581949299, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '80', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712581949305, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '81', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712581949310, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '82', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712581949314, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '83', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712581949320, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '85', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Whats-new.svg', + blocked: false, + timeStamp: 1712581949322, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949721, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950080, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950098, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950158, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960185, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_parsely_sessionrtcamp.com/': { + parsedCookie: { + name: '_parsely_session', + value: + '{%22sid%22:9%2C%22surl%22:%22https://rtcamp.com/%22%2C%22sref%22:%22%22%2C%22sts%22:1712581949558%2C%22slts%22:1712567085259}', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2024-04-08T13:42:29.000Z', + partitionKey: '', + size: 141, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'request', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581949720, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '109', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712581950080, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950097, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950158, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960184, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'warmly_b4dafe8509a5fd61b4850acb8a60c06bopps-api.getwarmly.com/api/sessions/trpc': + { + isBlocked: true, + parsedCookie: { + domain: 'opps-api.getwarmly.com', + expires: '2025-04-05T09:33:25.133Z', + httpOnly: true, + name: 'warmly_b4dafe8509a5fd61b4850acb8a60c06b', + path: '/api/sessions/trpc', + priority: 'Medium', + sameParty: false, + sameSite: 'None', + secure: true, + session: false, + size: 172, + sourcePort: 443, + sourceScheme: 'Secure', + value: + '%7B%22sessionId%22%3A%22c75eb9a9-9ae9-43b8-b3da-5ceabbf59d44%22%2C%22sessionUserId%22%3A%2210dd5156-c0b4-4b75-966d-bc1b66ab6263%22%7D', + samesite: 'none', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.124', + url: '', + blocked: true, + timeStamp: 1712581949903, + }, + ], + responseEvents: [], + }, + blockedReasons: ['NotOnPath', 'DomainMismatch'], + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + }, + 'stg_traffic_source_priorityrtcamp.com/': { + parsedCookie: { + name: 'stg_traffic_source_priority', + value: '1', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2024-04-08T13:42:40.000Z', + partitionKey: false, + size: 28, + priority: 'Medium', + partitioned: false, + sameSite: 'strict', + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_traffic_source_priority', + domain: '', + description: + 'Stores the type of traffic source that explains how the visitor reached your website.', + retention: '30 minutes', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '116', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712581950159, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960185, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + blockedReasons: [], + warningReasons: [], + isBlocked: false, + }, + 'NIDgoogle.com/': { + parsedCookie: { + name: 'NID', + value: + '513=fEZHdYbXcRMAOF3ZPEA3vRl9Dm7-B9JLfpLpTrtY3gDHBfo77B_V95BsxRPFvj7YXREgcHTvevfSVQwA7uWRBks6qoX0kKjqJ4I2zPwGXO436kL3thFCJu9nDXhnmGj6_Arpl_OQ8r50YccBg8N7qSxa2Dt_bhE7DnuyrRK91bv69GFnGAnpGEzA7pvdyPxB_WX9SQpPQ4U', + domain: '.google.com', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-10-07T21:20:50.696Z', + partitionKey: '', + size: 210, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google', + category: 'Marketing', + name: 'NID', + domain: 'google.com', + description: + 'This cookies is used to collect website statistics and track conversion rates and Google ad personalisation', + retention: '1 year', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://accounts.google.com/gsi/client?ver=1670238691', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '118', + url: 'https://accounts.google.com/gsi/client?ver=1670238691', + blocked: false, + timeStamp: 1712581950164, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.150', + url: '', + blocked: false, + timeStamp: 1712581950306, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '120', + url: 'https://analytics.google.com/g/s/collect?dma=0>m=45j91e4440v882644066z871645728z99177835882za200&_gsid=7HKDVLRRV4ncGMn9AhupAY-Kzz8UzrVw', + blocked: false, + timeStamp: 1712581950371, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.153', + url: '', + blocked: false, + timeStamp: 1712581950449, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '125', + url: 'https://accounts.google.com/gsi/style', + blocked: false, + timeStamp: 1712581950481, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '130', + url: 'https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + blocked: false, + timeStamp: 1712581950506, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.166', + url: '', + blocked: false, + timeStamp: 1712581950560, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '139', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=vmtgeiagaah9', + blocked: false, + timeStamp: 1712581950656, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '141', + url: 'https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + blocked: false, + timeStamp: 1712581950659, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.182', + url: '', + blocked: false, + timeStamp: 1712581950660, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '142', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=1gwdsmvwc4h5', + blocked: false, + timeStamp: 1712581950671, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '456D57955FFFE760F7C7CBB8DB0A6565', + url: '', + blocked: false, + timeStamp: 1712581950741, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1CBC1E18D4104CCB9A543F8821D77A52', + url: '', + blocked: false, + timeStamp: 1712581950742, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.196', + url: '', + blocked: false, + timeStamp: 1712581950744, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '149', + url: 'https://accounts.google.com/gsi/status?client_id=549796576131-8aoqmiheqf84a8bh3dl10ec2kp2v6e7p.apps.googleusercontent.com&as=2r0i4ezF5ZHWI2EE12JSdQ', + blocked: false, + timeStamp: 1712581950745, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '153', + url: 'https://www.google.com/js/bg/OMzbJ87gkB5MAUky6mmDB4mflkEza4rQHUJNCD4hS_4.js', + blocked: false, + timeStamp: 1712581950846, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '157', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712581950862, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '158', + url: 'https://www.google.com/js/bg/MAj5J5iEgh_vMgeickC5b2xvhmiD7VG83v9sx_9XVJI.js', + blocked: false, + timeStamp: 1712581950875, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '160', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712581950888, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '165', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581951039, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1AC032028CF13BA78D4CE0F71FCCCDDA', + url: '', + blocked: false, + timeStamp: 1712581951040, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '166', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581951135, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '168', + url: 'https://www.google.com/js/bg/MAj5J5iEgh_vMgeickC5b2xvhmiD7VG83v9sx_9XVJI.js', + blocked: false, + timeStamp: 1712581951267, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.212', + url: '', + blocked: false, + timeStamp: 1712581951787, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '177', + url: 'https://accounts.google.com/gsi/status?client_id=549796576131-8aoqmiheqf84a8bh3dl10ec2kp2v6e7p.apps.googleusercontent.com&as=2r0i4ezF5ZHWI2EE12JSdQ', + blocked: false, + timeStamp: 1712581951788, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.226', + url: '', + blocked: false, + timeStamp: 1712581953413, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '191', + url: 'https://www.google.com/pagead/1p-user-list/11351157933/?random=1712581953245&cv=11&fst=1712581200000&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&fmt=3&is_vtc=1&cid=CAQSKQB7FLtq77Cr83eyZWMOh75-kFS-xT343ZEQweVwrt951p5KTOqKEXVS&random=266600465&rmt_tld=0&ipr=y', + blocked: false, + timeStamp: 1712581953414, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '325', + url: 'https://accounts.google.com/gsi/style', + blocked: false, + timeStamp: 1712581960195, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '332', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=1gwdsmvwc4h5', + blocked: false, + timeStamp: 1712581960197, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '345', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=vmtgeiagaah9', + blocked: false, + timeStamp: 1712581960312, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '346', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581960315, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [13, 8, 9, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + '_GRECAPTCHAwww.google.com/recaptcha': { + isBlocked: true, + parsedCookie: { + domain: 'www.google.com', + expires: '2024-10-05T13:12:31.240Z', + httpOnly: true, + name: '_GRECAPTCHA', + path: '/recaptcha', + priority: 'High', + sameParty: false, + sameSite: 'None', + secure: true, + session: false, + size: 100, + sourcePort: 443, + sourceScheme: 'Secure', + value: + '09ABIEJosgzZMW6tkpObHeXL81IlTnzBe2V5o-7fUsIXyxakYYBKH9Az_p8bdutmiWyL6bJX-vCoshIu0gxzGl-k8', + samesite: 'none', + partitionKey: '', + httponly: true, + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.150', + url: '', + blocked: true, + timeStamp: 1712581950306, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.153', + url: '', + blocked: true, + timeStamp: 1712581950448, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '130', + url: 'https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + blocked: false, + timeStamp: 1712581950506, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.166', + url: '', + blocked: false, + timeStamp: 1712581950560, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '139', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=vmtgeiagaah9', + blocked: false, + timeStamp: 1712581950656, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '141', + url: 'https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + blocked: false, + timeStamp: 1712581950659, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.182', + url: '', + blocked: false, + timeStamp: 1712581950660, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '142', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=1gwdsmvwc4h5', + blocked: false, + timeStamp: 1712581950671, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '456D57955FFFE760F7C7CBB8DB0A6565', + url: '', + blocked: false, + timeStamp: 1712581950741, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1CBC1E18D4104CCB9A543F8821D77A52', + url: '', + blocked: false, + timeStamp: 1712581950742, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.196', + url: '', + blocked: true, + timeStamp: 1712581950744, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '157', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712581950861, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '160', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712581950888, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '165', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581951039, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1AC032028CF13BA78D4CE0F71FCCCDDA', + url: '', + blocked: false, + timeStamp: 1712581951040, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '166', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581951135, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.212', + url: '', + blocked: true, + timeStamp: 1712581951786, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.226', + url: '', + blocked: true, + timeStamp: 1712581953413, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '332', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=1gwdsmvwc4h5', + blocked: false, + timeStamp: 1712581960196, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '345', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=vmtgeiagaah9', + blocked: false, + timeStamp: 1712581960310, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '346', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581960312, + }, + ], + responseEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '166', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712581951242, + }, + ], + }, + blockedReasons: ['NotOnPath', 'DomainMismatch'], + analytics: { + platform: 'Google reCAPTCHA', + category: 'Functional', + name: '_GRECAPTCHA', + domain: 'google.com', + description: + 'Google reCAPTCHA sets a necessary cookie (_GRECAPTCHA) when executed for the purpose of providing its risk analysis.', + retention: '179 days', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [13, 8, 9, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'SNIDgoogle.com/verify': { + isBlocked: true, + parsedCookie: { + domain: '.google.com', + expires: '2024-10-05T06:36:29.696Z', + httpOnly: true, + name: 'SNID', + path: '/verify', + priority: 'Medium', + sameParty: false, + sameSite: 'Lax', + secure: true, + session: false, + size: 103, + sourcePort: 443, + sourceScheme: 'Secure', + value: + 'AOYECSr1AIksFOU_JTnc2ZZ-4TzCOICD8R03NsbLY3NmJpowc-xGVCb-BN4PM0erTr7W32PjsGaYrtD9kva2AlNWHsra2M4iwX8', + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.150', + url: '', + blocked: true, + timeStamp: 1712581950306, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.153', + url: '', + blocked: true, + timeStamp: 1712581950448, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.166', + url: '', + blocked: true, + timeStamp: 1712581950559, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.182', + url: '', + blocked: true, + timeStamp: 1712581950659, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '456D57955FFFE760F7C7CBB8DB0A6565', + url: '', + blocked: true, + timeStamp: 1712581950741, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1CBC1E18D4104CCB9A543F8821D77A52', + url: '', + blocked: true, + timeStamp: 1712581950742, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.196', + url: '', + blocked: true, + timeStamp: 1712581950744, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1AC032028CF13BA78D4CE0F71FCCCDDA', + url: '', + blocked: true, + timeStamp: 1712581951039, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.212', + url: '', + blocked: true, + timeStamp: 1712581951787, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.226', + url: '', + blocked: true, + timeStamp: 1712581953413, + }, + ], + responseEvents: [], + }, + blockedReasons: ['NotOnPath', 'SameSiteLax'], + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + warningReasons: [], + }, + 'AECgoogle.com/': { + isBlocked: true, + parsedCookie: { + domain: '.google.com', + expires: '2024-09-29T13:56:56.309Z', + httpOnly: true, + name: 'AEC', + path: '/', + priority: 'Medium', + sameParty: false, + sameSite: 'Lax', + secure: true, + session: false, + size: 61, + sourcePort: 443, + sourceScheme: 'Secure', + value: 'AQTF6HyG1VGHI6o8fu3nQ-FoJdbMr-JjFktcDDgVZYiHk1wSKkdoi-oXoQ', + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.150', + url: '', + blocked: true, + timeStamp: 1712581950306, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.153', + url: '', + blocked: true, + timeStamp: 1712581950449, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.166', + url: '', + blocked: true, + timeStamp: 1712581950560, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.182', + url: '', + blocked: true, + timeStamp: 1712581950660, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '456D57955FFFE760F7C7CBB8DB0A6565', + url: '', + blocked: true, + timeStamp: 1712581950741, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1CBC1E18D4104CCB9A543F8821D77A52', + url: '', + blocked: true, + timeStamp: 1712581950742, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.196', + url: '', + blocked: true, + timeStamp: 1712581950744, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '1AC032028CF13BA78D4CE0F71FCCCDDA', + url: '', + blocked: true, + timeStamp: 1712581951040, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.212', + url: '', + blocked: true, + timeStamp: 1712581951787, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.226', + url: '', + blocked: true, + timeStamp: 1712581953413, + }, + ], + responseEvents: [], + }, + blockedReasons: ['SameSiteLax'], + analytics: { + platform: 'Google Ads', + category: 'Functional', + name: 'AEC', + domain: 'google.com', + description: + 'AEC cookies ensure that requests within a browsing session are made by the user, and not by other sites. These cookies prevent malicious sites from acting on behalf of a user without that user’s knowledge.', + retention: '6 months', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + warningReasons: [], + }, + 'FPGSIDrtcamp.com/': { + isBlocked: false, + blockedReasons: [], + parsedCookie: { + expires: '2024-04-08T13:42:30.363Z', + httponly: false, + secure: true, + path: '/', + domain: '.rtcamp.com', + samesite: 'strict', + name: 'FPGSID', + value: '1.1712581950.1712581950.G-7HKDVLRRV4.ncGMn9AhupAY-Kzz8UzrVw', + partitionKey: '', + size: 65, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960185, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '76817.127', + url: '', + blocked: false, + timeStamp: 1712581950367, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '106', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712581949257&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1647693890&ul=en-us&sr=1440x900&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712581949257&sst.ude=0&_s=1&sid=1712581949&sct=10&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1668&richsstsse', + blocked: false, + timeStamp: 1712581950370, + }, + ], + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + isFirstParty: true, + headerType: 'request', + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + warningReasons: [], + }, + 'ar_debugdoubleclick.net/': { + parsedCookie: { + name: 'ar_debug', + value: '1', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-05-05T06:17:14.801Z', + partitionKey: '', + size: 9, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'ar_debug', + domain: 'doubleclick.net', + description: 'Store and track conversions', + retention: 'Persistent', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4440v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '122', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4440v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712581950371, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.155', + url: '', + blocked: false, + timeStamp: 1712581950501, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '189', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712581953245&cv=11&fst=1712581953245&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712581953253, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '190', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712581953245&cv=11&fst=1712581953245&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712581953254, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.225', + url: '', + blocked: false, + timeStamp: 1712581953335, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '7F249134584B2E5CB2A63A190D401895', + url: '', + blocked: false, + timeStamp: 1712581953437, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '333', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712581953245&cv=11&fst=1712581953245&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712581960199, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [14, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'IDEdoubleclick.net/': { + parsedCookie: { + name: 'IDE', + value: + 'AHWqTUlOB-8ILGGuwKJVjURVYIWUPrakwD7qZ8dW3EuMsd1IjF147meBsb14R4DSSQc', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2025-05-13T06:44:32.161Z', + partitionKey: '', + size: 70, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'IDE', + domain: 'doubleclick.net (3rd party)', + description: + 'This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4440v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '122', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4440v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712581950371, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.155', + url: '', + blocked: false, + timeStamp: 1712581950501, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '189', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712581953245&cv=11&fst=1712581953245&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712581953253, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '190', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712581953245&cv=11&fst=1712581953245&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712581953254, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.225', + url: '', + blocked: false, + timeStamp: 1712581953336, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '7F249134584B2E5CB2A63A190D401895', + url: '', + blocked: false, + timeStamp: 1712581953438, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '333', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712581953245&cv=11&fst=1712581953245&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712581960199, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [14, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'JSESSIONIDads.kwanzoo.com/': { + blockedReasons: [ + 'SameSiteUnspecifiedTreatedAsLax', + 'ExcludeSameSiteUnspecifiedTreatedAsLax', + ], + warningReasons: ['WarnSameSiteUnspecifiedCrossSiteContext'], + isBlocked: true, + parsedCookie: { + name: 'JSESSIONID', + value: '1E68CDE89606D58E7043FF00C62D08E6', + domain: 'ads.kwanzoo.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: 0, + partitionKey: '', + size: 42, + priority: 'Medium', + }, + analytics: { + platform: 'J2EE', + category: 'Functional', + name: 'JSESSIONID*', + domain: '', + description: + 'JSESSIONID is a cookie generated by Servlet containers and used for session management in J2EE web applications for HTTP protocol. If a Web server is using a cookie for session management, it creates and sends JSESSIONID cookie to the client and then the client sends it back to the server in subsequent HTTP requests. JSESSIONID is a platform session cookie and is used by sites with JavaServer Pages (JSP). The cookie is used to maintain an anonymous user session by the server.', + retention: 'session', + dataController: 'J2EE', + gdprUrl: '', + wildcard: '1', + }, + url: 'https://ads.kwanzoo.com/embed-code/12716', + networkEvents: { + requestEvents: [], + responseEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '102', + url: 'https://ads.kwanzoo.com/embed-code/12716', + blocked: true, + timeStamp: 1712581950421, + }, + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: 'D579C7C73FAFF5D1DAF4D13CADFA3FD2', + url: 'https://ads.kwanzoo.com/widget/inactive/12716', + blocked: true, + timeStamp: 1712581951517, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '123', + url: 'https://ads.kwanzoo.com/widget/inactive/12716', + blocked: true, + timeStamp: 1712581951519, + }, + ], + }, + headerType: 'response', + isFirstParty: false, + frameIdList: [7, 0], + blockingStatus: { + inboundBlock: 'BLOCKED_IN_ALL_EVENTS', + outboundBlock: 'NOT_BLOCKED', + }, + }, + 'tuida.usbrowserspeed.com/': { + parsedCookie: { + name: 'tuid', + value: '1eadd2b3-4c04-4400-906c-71d58120510a', + domain: 'a.usbrowserspeed.com', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2025-04-08T13:12:31.242Z', + partitionKey: '', + size: 40, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'response', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '124', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + blocked: false, + timeStamp: 1712581950422, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '76817.156', + url: '', + blocked: false, + timeStamp: 1712581950953, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '76817.156', + url: '', + blocked: false, + timeStamp: 1712581951239, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '124', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + blocked: false, + timeStamp: 1712581951242, + }, + ], + }, + isFirstParty: false, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'cookietestrtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: 'Session', + name: 'cookietest', + partitioned: false, + path: '/', + sameSite: 'lax', + secure: false, + value: '1', + partitionKey: false, + size: 11, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [], + responseEvents: [], + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + '_pk_ses.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59rtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: '2024-04-08T13:42:40.000Z', + name: '_pk_ses.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59', + partitioned: false, + path: '/', + sameSite: 'lax', + secure: true, + value: '*', + partitionKey: '', + size: 50, + priority: 'Medium', + httponly: false, + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '318', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712581960185, + }, + ], + responseEvents: [], + }, + analytics: { + platform: 'Matomo', + category: 'Analytics', + name: '_pk_ses*', + domain: '', + description: + 'Short lived cookies used to temporarily store data for the visit', + retention: '30 minutes', + dataController: 'Matomo', + gdprUrl: 'https://matomo.org/privacy-policy/', + wildcard: '1', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + }, + cookiesStatsComponents: { + legend: [ + { + label: 'Functional', + count: 3, + color: '#5CC971', + countClassName: 'text-functional', + }, + { + label: 'Marketing', + count: 5, + color: '#F3AE4E', + countClassName: 'text-uncategorised', + }, + { + label: 'Analytics', + count: 12, + color: '#4C79F4', + countClassName: 'text-uncategorised', + }, + { + label: 'Uncategorized', + count: 8, + color: '#EC7159', + countClassName: 'text-uncategorised', + }, + ], + firstParty: [ + { + count: 0, + color: '#5CC971', + }, + { + count: 2, + color: '#F3AE4E', + }, + { + count: 12, + color: '#4C79F4', + }, + { + count: 5, + color: '#EC7159', + }, + ], + thirdParty: [ + { + count: 3, + color: '#5CC971', + }, + { + count: 3, + color: '#F3AE4E', + }, + { + count: 0, + color: '#4C79F4', + }, + { + count: 3, + color: '#EC7159', + }, + ], + blocked: [ + { + count: 5, + color: '#7D8471', + }, + { + count: 3, + color: '#79553D', + }, + { + count: 2, + color: '#FFA420', + }, + { + count: 1, + color: '#FF7514', + }, + { + count: 1, + color: '#1C542D', + }, + ], + blockedCookiesLegend: [ + { + label: 'DomainMismatch', + count: 5, + color: '#7D8471', + countClassName: 'text-battle-dress', + }, + { + label: 'NotOnPath', + count: 3, + color: '#79553D', + countClassName: 'text-brownstone', + }, + { + label: 'SameSiteLax', + count: 2, + color: '#FFA420', + countClassName: 'text-honey-wax', + }, + { + label: 'SameSiteUnspecifiedTreatedAsLax', + count: 1, + color: '#FF7514', + countClassName: 'text-sparks-in-green', + }, + { + label: 'ExcludeSameSiteUnspecifiedTreatedAsLax', + count: 1, + color: '#1C542D', + countClassName: 'text-jay-bird', + }, + ], + }, + tabFrames: { + 'https://rtcamp.com': { + frameIds: [0], + frameType: 'outermost_frame', + isOnRWS: false, + }, + 'https://ads.kwanzoo.com': { + frameIds: [7], + frameType: 'sub_frame', + isOnRWS: false, + }, + 'https://www.google.com': { + frameIds: [8, 9, 13], + frameType: 'sub_frame', + isOnRWS: false, + }, + 'https://td.doubleclick.net': { + frameIds: [14], + frameType: 'sub_frame', + isOnRWS: false, + }, + }, + showInfoIcon: true, + showHorizontalMatrix: false, + blockedCookieDataMapping: [ + { + title: 'Blocked cookies', + count: 8, + data: [ + { + count: 5, + color: '#7D8471', + }, + { + count: 3, + color: '#79553D', + }, + { + count: 2, + color: '#FFA420', + }, + { + count: 1, + color: '#FF7514', + }, + { + count: 1, + color: '#1C542D', + }, + ], + }, + ], + showBlockedInfoIcon: true, + frameStateCreator: { + dataMapping: [ + { + title: 'Frames', + count: 4, + data: [ + { + count: 4, + color: '#25ACAD', + }, + { + count: 3, + color: '#F54021', + }, + { + count: 3, + color: '#AF7AA3', + }, + { + count: 4, + color: '#C5A06A', + }, + { + count: 0, + color: '#A98307', + }, + ], + }, + ], + legend: [ + { + label: 'Total frames', + count: 4, + color: '#25ACAD', + countClassName: 'text-greenland-green', + }, + { + label: 'Frames with cookies', + count: 4, + color: '#C5A06A', + countClassName: 'text-good-life', + }, + { + label: 'Frames with blocked cookies', + count: 3, + color: '#AF7AA3', + countClassName: 'text-victorian-violet', + }, + { + label: 'Frames with unblocked cookies', + count: 3, + color: '#F54021', + countClassName: 'text-strawberry-spinach-red', + }, + { + label: 'Fenced frames', + count: 0, + color: '#A98307', + countClassName: 'text-chestnut-gold', + }, + ], + }, + libraryMatches: { + gsiV2: { + signatureMatches: 0, + matches: [], + moduleMatch: 0, + }, + gis: { + signatureMatches: 0, + matches: [], + }, + 'fb-comments': { + domQuerymatches: [], + }, + 'fb-likes': { + domQuerymatches: [], + }, + 'disqus-comments': { + domQuerymatches: [], + }, + 'jetpack-comments': { + domQuerymatches: [], + }, + 'jetpack-likes': { + domQuerymatches: [], + }, + reCaptcha: { + domQuerymatches: [ + 'script[src]: https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + 'script[src]: https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + ], + }, + }, +}; + +export default data; From 2ad94d632a30c653327479345f2f75a4a094a943 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Tue, 9 Apr 2024 13:49:56 +0530 Subject: [PATCH 21/23] ref: add unit test for report object generation --- .../extension/src/utils/downloadReport.ts | 56 +- .../src/utils/generateReportObject.ts | 87 + .../extension/src/utils/tests/data.mock.ts | 7446 +++++++++++++++++ .../src/utils/tests/generateReportObject.ts | 27 + 4 files changed, 7570 insertions(+), 46 deletions(-) create mode 100644 packages/extension/src/utils/generateReportObject.ts create mode 100644 packages/extension/src/utils/tests/data.mock.ts create mode 100644 packages/extension/src/utils/tests/generateReportObject.ts diff --git a/packages/extension/src/utils/downloadReport.ts b/packages/extension/src/utils/downloadReport.ts index 619750ea1..f1fbb441a 100644 --- a/packages/extension/src/utils/downloadReport.ts +++ b/packages/extension/src/utils/downloadReport.ts @@ -21,13 +21,11 @@ import type { TabCookies, TabFrames, } from '@ps-analysis-tool/common'; -import { - prepareCookieStatsComponents, - prepareCookiesCount, - prepareFrameStatsComponent, - type DataMapping, -} from '@ps-analysis-tool/design-system'; import { saveAs } from 'file-saver'; +/** + * Internal dependencies. + */ +import generateReportObject from './generateReportObject'; /** * Utility function to download report. @@ -46,50 +44,16 @@ export default async function downloadReport( const parser = new DOMParser(); const reportDom = parser.parseFromString(htmlText, 'text/html'); - const cookieStats = prepareCookiesCount(tabCookies); - const cookiesStatsComponents = prepareCookieStatsComponents(cookieStats); - const frameStateCreator = prepareFrameStatsComponent(tabFrames, tabCookies); - - const cookieClassificationDataMapping: DataMapping[] = [ - { - title: 'Total cookies', - count: cookieStats.total, - data: cookiesStatsComponents.legend, - }, - { - title: '1st party cookies', - count: cookieStats.firstParty.total, - data: cookiesStatsComponents.firstParty, - }, - { - title: '3rd party cookies', - count: cookieStats.thirdParty.total, - data: cookiesStatsComponents.thirdParty, - }, - ]; - - const blockedCookieDataMapping: DataMapping[] = [ - { - title: 'Blocked cookies', - count: cookieStats.blockedCookies.total, - data: cookiesStatsComponents.blocked, - }, - ]; - // Injections const script = reportDom.createElement('script'); - const code = `window.PSAT_DATA = ${JSON.stringify({ - cookieClassificationDataMapping, + + const reportData = generateReportObject( tabCookies, - cookiesStatsComponents, tabFrames, - showInfoIcon: true, - showHorizontalMatrix: false, - blockedCookieDataMapping, - showBlockedInfoIcon: true, - frameStateCreator, - libraryMatches, - })}`; + libraryMatches + ); + + const code = `window.PSAT_DATA = ${JSON.stringify(reportData)}`; script.text = code; reportDom.head.appendChild(script); diff --git a/packages/extension/src/utils/generateReportObject.ts b/packages/extension/src/utils/generateReportObject.ts new file mode 100644 index 000000000..1bbb7a519 --- /dev/null +++ b/packages/extension/src/utils/generateReportObject.ts @@ -0,0 +1,87 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * External dependencies. + */ +import type { + LibraryData, + TabCookies, + TabFrames, +} from '@ps-analysis-tool/common'; + +import { + prepareCookieStatsComponents, + prepareCookiesCount, + prepareFrameStatsComponent, + type DataMapping, +} from '@ps-analysis-tool/design-system'; + +/** + * Utility function to generate report object. + * @param url Top level URL. + * @param tabCookies Tab cookies. + * @param tabFrames Tab frames. + * @param libraryMatches + */ +export default function generateReportObject( + tabCookies: TabCookies, + tabFrames: TabFrames, + libraryMatches: LibraryData +) { + const cookieStats = prepareCookiesCount(tabCookies); + const cookiesStatsComponents = prepareCookieStatsComponents(cookieStats); + const frameStateCreator = prepareFrameStatsComponent(tabFrames, tabCookies); + + const cookieClassificationDataMapping: DataMapping[] = [ + { + title: 'Total cookies', + count: cookieStats.total, + data: cookiesStatsComponents.legend, + }, + { + title: '1st party cookies', + count: cookieStats.firstParty.total, + data: cookiesStatsComponents.firstParty, + }, + { + title: '3rd party cookies', + count: cookieStats.thirdParty.total, + data: cookiesStatsComponents.thirdParty, + }, + ]; + + const blockedCookieDataMapping: DataMapping[] = [ + { + title: 'Blocked cookies', + count: cookieStats.blockedCookies.total, + data: cookiesStatsComponents.blocked, + }, + ]; + + return { + cookieClassificationDataMapping, + tabCookies, + cookiesStatsComponents, + tabFrames, + showInfoIcon: true, + showHorizontalMatrix: false, + blockedCookieDataMapping, + showBlockedInfoIcon: true, + frameStateCreator, + libraryMatches, + }; +} diff --git a/packages/extension/src/utils/tests/data.mock.ts b/packages/extension/src/utils/tests/data.mock.ts new file mode 100644 index 000000000..e6dc1237e --- /dev/null +++ b/packages/extension/src/utils/tests/data.mock.ts @@ -0,0 +1,7446 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +export const tabCookies = { + '_gcl_aurtcamp.com/': { + parsedCookie: { + name: '_gcl_au', + value: '1.1.1643004070.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2024-07-02T05:40:12.000Z', + partitionKey: '', + size: 32, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: 'Google', + category: 'Marketing', + name: '_gcl_au', + domain: '', + description: + 'Used by Google AdSense for experimenting with advertisement efficiency across websites using their services.', + retention: '3 months', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838658, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838663, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838679, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838685, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838694, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838713, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838838, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839204, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839623, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893820, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_user_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_user_id', + value: 'null', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 15, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_user_id', + domain: '.trustpilot.com', + description: + ' This cookie helps track visitor usage, events, target marketing, and can also measure application performance and stability.', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838679, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838685, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838694, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838715, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838839, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893820, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_group_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_group_id', + value: 'null', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 16, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_group_id', + domain: '.trustpilot.com', + description: 'Track visitor usage and events within the website', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838679, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838686, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838695, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838810, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893820, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_anonymous_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_anonymous_id', + value: '%220eae481f-71ad-4118-9309-1f60ae8f9f6d%22', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 58, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_anonymous_id', + domain: '.trustpilot.com', + description: + 'Used for Analytics and help count how many people visit a certain site by tracking if you have visited before', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838680, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838686, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838695, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_gartcamp.com/': { + parsedCookie: { + name: '_ga', + value: 'GA1.1.1593307359.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-14T08:03:59.200Z', + partitionKey: '', + size: 30, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: '_ga', + domain: 'google-analytics.com (3rd party) or', + description: 'ID used to identify users', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838680, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838687, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838696, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893799, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896283, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'FPIDrtcamp.com/': { + parsedCookie: { + name: 'FPID', + value: + 'FPID2.2.BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: true, + samesite: '', + expires: '2025-05-14T08:03:59.874Z', + partitionKey: '', + size: 71, + priority: 'Medium', + httpOnly: true, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: 'FPID', + domain: '', + description: + "Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.", + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838660, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838680, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838687, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838696, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839206, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839626, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893799, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896283, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839875, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839882, + }, + ], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'FPAUrtcamp.com/': { + parsedCookie: { + name: 'FPAU', + value: '1.1.1643004070.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: '2024-07-02T05:40:11.874Z', + partitionKey: '', + size: 29, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Marketing', + name: 'FPAU', + domain: '', + description: + 'Assigns a specific ID to the visitor. This allows the website to determine the number of specific user-visits for analysis and statistics.', + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838660, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838665, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838672, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838681, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838688, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838696, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839206, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839626, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893799, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896283, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839876, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839882, + }, + ], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'track_uidrtcamp.com/': { + parsedCookie: { + name: 'track_uid', + value: 'df985b92-a92b-7c79-35c7-3030565fd182', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-09T08:04:01.000Z', + partitionKey: '', + size: 45, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838661, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838665, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838669, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838673, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838682, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838688, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838697, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838841, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839206, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839626, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893800, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893822, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896284, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'stg_returning_visitorrtcamp.com/': { + parsedCookie: { + name: 'stg_returning_visitor', + value: 'Wed%2C%2003%20Apr%202024%2008:00:23%20GMT', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2025-04-03T08:00:23.000Z', + partitionKey: '', + size: 62, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'Strict', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_returning_visitor', + domain: '', + description: + 'Determines if the visitor has already been to your website — they are returning visitors.', + retention: '365 days', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838661, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838669, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838673, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838682, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838689, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838698, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838826, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838841, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: true, + timeStamp: 1712649839621, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893800, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893822, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896284, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + '_parsely_visitorrtcamp.com/': { + parsedCookie: { + name: '_parsely_visitor', + value: + '{%22id%22:%22pid=55cc8d59-04cf-4bcd-aaca-5e6bb9ca7cc4%22%2C%22session_count%22:10%2C%22last_session_ts%22:1712649839162}', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-09T18:05:00.000Z', + partitionKey: false, + size: 136, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838661, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838669, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838674, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838683, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838690, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838699, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838826, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838844, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839207, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839629, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893802, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893823, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896285, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_pk_id.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59rtcamp.com/': { + parsedCookie: { + name: '_pk_id.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59', + value: 'e232543d43714eb7.1712122813.9.1712649896.1712649840.', + domain: 'rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: 'lax', + expires: '2025-05-07T08:04:56.000Z', + partitionKey: '', + size: 100, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'lax', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + }, + analytics: { + platform: 'Matomo', + category: 'Analytics', + name: '_pk_id*', + domain: '', + description: + 'Used to store a few details about the user such as the unique visitor ID', + retention: '13 months', + dataController: 'Matomo', + gdprUrl: 'https://matomo.org/privacy-policy/', + wildcard: '1', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838662, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838675, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838684, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838691, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838699, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838837, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838844, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: true, + timeStamp: 1712649839621, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893805, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896290, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + 'stg_last_interactionrtcamp.com/': { + parsedCookie: { + name: 'stg_last_interaction', + value: 'Tue%2C%2009%20Apr%202024%2008:04:56%20GMT', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2025-04-09T08:04:56.000Z', + partitionKey: false, + size: 61, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'strict', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_last_interaction', + domain: '', + description: + "Determines whether the last visitor's session is still in progress or a new session has started.", + retention: '365 days', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838662, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838675, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838684, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838691, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838700, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838837, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838845, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: true, + timeStamp: 1712649839622, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893805, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896288, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + '_ga_7HKDVLRRV4rtcamp.com/': { + parsedCookie: { + name: '_ga_7HKDVLRRV4', + value: 'GS1.1.1712649839.11.0.1712649839.0.0.1798602937', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-14T08:03:59.200Z', + partitionKey: '', + size: 61, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: '_ga_*', + domain: 'google-analytics.com (3rd party) or ', + description: 'ID used to identify users', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '1', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838662, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838676, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838685, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838692, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838700, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838838, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838845, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839207, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839630, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893802, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893823, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896286, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_parsely_sessionrtcamp.com/': { + parsedCookie: { + name: '_parsely_session', + value: + '{%22sid%22:10%2C%22surl%22:%22https://rtcamp.com/%22%2C%22sref%22:%22%22%2C%22sts%22:1712649839162%2C%22slts%22:1712581949558}', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2024-04-09T08:35:00.000Z', + partitionKey: false, + size: 142, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'javascript', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839207, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839628, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893801, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893822, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896284, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'warmly_b4dafe8509a5fd61b4850acb8a60c06bopps-api.getwarmly.com/api/sessions/trpc': + { + isBlocked: true, + parsedCookie: { + domain: 'opps-api.getwarmly.com', + expires: '2025-04-05T09:33:25.133Z', + httpOnly: true, + name: 'warmly_b4dafe8509a5fd61b4850acb8a60c06b', + path: '/api/sessions/trpc', + priority: 'Medium', + sameParty: false, + sameSite: 'None', + secure: true, + session: false, + size: 172, + sourcePort: 443, + sourceScheme: 'Secure', + value: + '%7B%22sessionId%22%3A%22c75eb9a9-9ae9-43b8-b3da-5ceabbf59d44%22%2C%22sessionUserId%22%3A%2210dd5156-c0b4-4b75-966d-bc1b66ab6263%22%7D', + samesite: 'none', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.124', + url: '', + blocked: true, + timeStamp: 1712649839387, + }, + ], + responseEvents: [], + }, + blockedReasons: ['NotOnPath', 'DomainMismatch'], + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + }, + 'FPLCrtcamp.com/': { + isBlocked: false, + blockedReasons: [], + parsedCookie: { + expires: '2024-04-10T04:03:59.874Z', + httponly: false, + secure: true, + path: '/', + domain: '.rtcamp.com', + samesite: '', + name: 'FPLC', + value: + '9cN4NZPh9L1TDUG1xtrXt9H%2BYwJihteKBHMDuZ9aDug1UQT8Y8XWjMkbh%2FCK9FcSi8XznsE9FnjtgaHtZpGd%2Ft7w5h%2Bfn%2Fc4%2BzAjYjPf%2FI9bYJT25qhdqJzArUMN9A%3D%3D', + partitionKey: '', + size: 150, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893804, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896287, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839876, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839882, + }, + ], + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: 'FPLC', + domain: '', + description: + 'This FPLC cookie is the cross-domain linker cookie hashed from the FPID cookie. It’s not HttpOnly, which means it can be read with JavaScript. It has a relatively short lifetime, just 20 hours.', + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + isFirstParty: true, + headerType: 'request', + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + warningReasons: [], + }, + 'FPGSIDrtcamp.com/': { + isBlocked: false, + blockedReasons: [], + parsedCookie: { + expires: '2024-04-09T08:33:59.874Z', + httponly: false, + secure: true, + path: '/', + domain: '.rtcamp.com', + samesite: 'strict', + name: 'FPGSID', + value: '1.1712649839.1712649839.G-7HKDVLRRV4.j1V_g8v-o4K7I5OKVAh_sQ', + partitionKey: '', + size: 65, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893805, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896288, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839877, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839883, + }, + ], + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + isFirstParty: true, + headerType: 'request', + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + warningReasons: [], + }, + 'NIDgoogle.com/': { + parsedCookie: { + name: 'NID', + value: + '513=fEZHdYbXcRMAOF3ZPEA3vRl9Dm7-B9JLfpLpTrtY3gDHBfo77B_V95BsxRPFvj7YXREgcHTvevfSVQwA7uWRBks6qoX0kKjqJ4I2zPwGXO436kL3thFCJu9nDXhnmGj6_Arpl_OQ8r50YccBg8N7qSxa2Dt_bhE7DnuyrRK91bv69GFnGAnpGEzA7pvdyPxB_WX9SQpPQ4U', + domain: '.google.com', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-10-07T21:20:50.696Z', + partitionKey: '', + size: 210, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google', + category: 'Marketing', + name: 'NID', + domain: 'google.com', + description: + 'This cookies is used to collect website statistics and track conversion rates and Google ad personalisation', + retention: '1 year', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://analytics.google.com/g/s/collect?dma=0>m=45j91e4441h2v882644066z871645728z99177835882za200&_gsid=7HKDVLRRV4j1V_g8v-o4K7I5OKVAh_sQ', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13109', + url: 'https://analytics.google.com/g/s/collect?dma=0>m=45j91e4441h2v882644066z871645728z99177835882za200&_gsid=7HKDVLRRV4j1V_g8v-o4K7I5OKVAh_sQ', + blocked: false, + timeStamp: 1712649839884, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: false, + timeStamp: 1712649840347, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13137', + url: 'https://www.google.com/pagead/1p-user-list/11351157933/?random=1712649842806&cv=11&fst=1712649600000&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&fmt=3&is_vtc=1&cid=CAQSKQB7FLtqntrNHDTQ_a-Sh9toqS56hqCzynlmLgQqmXr8fV3VRVs4WeVb&random=4222396660&rmt_tld=0&ipr=y', + blocked: false, + timeStamp: 1712649843058, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: false, + timeStamp: 1712649843116, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: false, + timeStamp: 1712649893828, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13151', + url: 'https://accounts.google.com/gsi/client?ver=1670238691', + blocked: false, + timeStamp: 1712649893829, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13152', + url: 'https://accounts.google.com/gsi/style', + blocked: false, + timeStamp: 1712649893990, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: false, + timeStamp: 1712649893992, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: false, + timeStamp: 1712649893994, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13153', + url: 'https://accounts.google.com/gsi/status?client_id=549796576131-8aoqmiheqf84a8bh3dl10ec2kp2v6e7p.apps.googleusercontent.com&as=STPqYB%2FVV%2F9qmKJZpeo94A', + blocked: false, + timeStamp: 1712649894001, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: false, + timeStamp: 1712649894017, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13158', + url: 'https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + blocked: false, + timeStamp: 1712649894018, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13163', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649894142, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: false, + timeStamp: 1712649894146, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13169', + url: 'https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + blocked: false, + timeStamp: 1712649894150, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13170', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649894175, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: false, + timeStamp: 1712649894342, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: false, + timeStamp: 1712649894347, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13180', + url: 'https://www.google.com/js/bg/MAj5J5iEgh_vMgeickC5b2xvhmiD7VG83v9sx_9XVJI.js', + blocked: false, + timeStamp: 1712649894368, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13184', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894388, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13185', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894409, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: false, + timeStamp: 1712649894553, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13188', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894556, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13189', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894642, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13190', + url: 'https://www.google.com/js/bg/MAj5J5iEgh_vMgeickC5b2xvhmiD7VG83v9sx_9XVJI.js', + blocked: false, + timeStamp: 1712649894762, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13298', + url: 'https://accounts.google.com/gsi/style', + blocked: false, + timeStamp: 1712649896292, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13307', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649896294, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13311', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649896305, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13312', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649896313, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [108, 112, 109, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'JSESSIONIDads.kwanzoo.com/': { + blockedReasons: [ + 'SameSiteUnspecifiedTreatedAsLax', + 'ExcludeSameSiteUnspecifiedTreatedAsLax', + ], + warningReasons: ['WarnSameSiteUnspecifiedCrossSiteContext'], + isBlocked: true, + parsedCookie: { + name: 'JSESSIONID', + value: '809D976D9AF74A799AA63ECAEFEADD53', + domain: 'ads.kwanzoo.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: 0, + partitionKey: '', + size: 42, + priority: 'Medium', + }, + analytics: { + platform: 'J2EE', + category: 'Functional', + name: 'JSESSIONID*', + domain: '', + description: + 'JSESSIONID is a cookie generated by Servlet containers and used for session management in J2EE web applications for HTTP protocol. If a Web server is using a cookie for session management, it creates and sends JSESSIONID cookie to the client and then the client sends it back to the server in subsequent HTTP requests. JSESSIONID is a platform session cookie and is used by sites with JavaServer Pages (JSP). The cookie is used to maintain an anonymous user session by the server.', + retention: 'session', + dataController: 'J2EE', + gdprUrl: '', + wildcard: '1', + }, + url: 'https://ads.kwanzoo.com/embed-code/12716', + networkEvents: { + requestEvents: [], + responseEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13101', + url: 'https://ads.kwanzoo.com/embed-code/12716', + blocked: true, + timeStamp: 1712649839949, + }, + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: 'F4EF4E6A51A1059466A162665500CB39', + url: 'https://ads.kwanzoo.com/widget/inactive/12716', + blocked: true, + timeStamp: 1712649841164, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13111', + url: 'https://ads.kwanzoo.com/widget/inactive/12716', + blocked: true, + timeStamp: 1712649841167, + }, + ], + }, + headerType: 'response', + isFirstParty: false, + frameIdList: [106, 0], + blockingStatus: { + inboundBlock: 'BLOCKED_IN_ALL_EVENTS', + outboundBlock: 'NOT_BLOCKED', + }, + }, + 'ar_debugdoubleclick.net/': { + parsedCookie: { + name: 'ar_debug', + value: '1', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-05-05T06:17:14.801Z', + partitionKey: '', + size: 9, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'ar_debug', + domain: 'doubleclick.net', + description: 'Store and track conversions', + retention: 'Persistent', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13112', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712649839982, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.134', + url: '', + blocked: false, + timeStamp: 1712649840188, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13135', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712649842806&cv=11&fst=1712649842806&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712649842825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13136', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649842828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.150', + url: '', + blocked: false, + timeStamp: 1712649842975, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '704DD5D4D792F030A8AB9ABC9C058A42', + url: '', + blocked: false, + timeStamp: 1712649843026, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13310', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649896295, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [107, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'IDEdoubleclick.net/': { + parsedCookie: { + name: 'IDE', + value: + 'AHWqTUntbo9r3WXMBqKntf9Kmmoiu8TGRlI6Dk9N7YsxBDVIN3PiG8gseG6NChrjT6k', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2025-05-14T07:54:32.220Z', + partitionKey: '', + size: 70, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'IDE', + domain: 'doubleclick.net (3rd party)', + description: + 'This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13112', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712649839982, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.134', + url: '', + blocked: false, + timeStamp: 1712649840188, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13135', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712649842806&cv=11&fst=1712649842806&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712649842825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13136', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649842828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.150', + url: '', + blocked: false, + timeStamp: 1712649842976, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '704DD5D4D792F030A8AB9ABC9C058A42', + url: '', + blocked: false, + timeStamp: 1712649843026, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13310', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649896295, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [107, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'DSIDdoubleclick.net/': { + parsedCookie: { + name: 'DSID', + value: 'NO_DATA', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-04-09T08:54:33.500Z', + partitionKey: '', + size: 11, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'DSID', + domain: 'doubleclick.net (3rd party)', + description: + 'This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite', + retention: '2 weeks', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13112', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712649839983, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.134', + url: '', + blocked: false, + timeStamp: 1712649840189, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13135', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712649842806&cv=11&fst=1712649842806&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712649842825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13136', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649842828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.150', + url: '', + blocked: false, + timeStamp: 1712649842976, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '704DD5D4D792F030A8AB9ABC9C058A42', + url: '', + blocked: false, + timeStamp: 1712649843027, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13310', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649896295, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [107, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'tuida.usbrowserspeed.com/': { + parsedCookie: { + name: 'tuid', + value: '1eadd2b3-4c04-4400-906c-71d58120510a', + domain: 'a.usbrowserspeed.com', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2025-04-09T08:04:01.027Z', + partitionKey: '', + size: 40, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'response', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13113', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + blocked: false, + timeStamp: 1712649840120, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.135', + url: '', + blocked: false, + timeStamp: 1712649840753, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.135', + url: '', + blocked: false, + timeStamp: 1712649841025, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13113', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + blocked: false, + timeStamp: 1712649841028, + }, + ], + }, + isFirstParty: false, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + '_GRECAPTCHAwww.google.com/recaptcha': { + isBlocked: true, + parsedCookie: { + domain: 'www.google.com', + expires: '2024-10-06T08:04:54.725Z', + httpOnly: true, + name: '_GRECAPTCHA', + path: '/recaptcha', + priority: 'High', + sameParty: false, + sameSite: 'None', + secure: true, + session: false, + size: 100, + sourcePort: 443, + sourceScheme: 'Secure', + value: + '09ABIEJouEaHgdO1cFbr1X9F69FvSW1TA4hefeRjfQpwlSVwkRSmYwrxz006dFw2R8FK3ECNOvT9iXt6HBfJwreQQ', + samesite: 'none', + partitionKey: '', + httponly: true, + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: true, + timeStamp: 1712649840346, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: true, + timeStamp: 1712649843115, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: true, + timeStamp: 1712649893827, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: true, + timeStamp: 1712649893990, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: true, + timeStamp: 1712649893993, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: false, + timeStamp: 1712649894016, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13158', + url: 'https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + blocked: false, + timeStamp: 1712649894017, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13163', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649894142, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: false, + timeStamp: 1712649894146, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13169', + url: 'https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + blocked: false, + timeStamp: 1712649894150, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13170', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649894174, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: false, + timeStamp: 1712649894342, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: false, + timeStamp: 1712649894345, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13184', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894388, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13185', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894409, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: false, + timeStamp: 1712649894552, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13188', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894555, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13189', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894641, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13307', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649896294, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13311', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649896305, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13312', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649896313, + }, + ], + responseEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13189', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894727, + }, + ], + }, + blockedReasons: ['NotOnPath', 'DomainMismatch'], + analytics: { + platform: 'Google reCAPTCHA', + category: 'Functional', + name: '_GRECAPTCHA', + domain: 'google.com', + description: + 'Google reCAPTCHA sets a necessary cookie (_GRECAPTCHA) when executed for the purpose of providing its risk analysis.', + retention: '179 days', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [108, 112, 109, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'SNIDgoogle.com/verify': { + isBlocked: true, + parsedCookie: { + domain: '.google.com', + expires: '2024-10-05T06:36:29.696Z', + httpOnly: true, + name: 'SNID', + path: '/verify', + priority: 'Medium', + sameParty: false, + sameSite: 'Lax', + secure: true, + session: false, + size: 103, + sourcePort: 443, + sourceScheme: 'Secure', + value: + 'AOYECSr1AIksFOU_JTnc2ZZ-4TzCOICD8R03NsbLY3NmJpowc-xGVCb-BN4PM0erTr7W32PjsGaYrtD9kva2AlNWHsra2M4iwX8', + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: true, + timeStamp: 1712649840346, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: true, + timeStamp: 1712649843115, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: true, + timeStamp: 1712649893827, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: true, + timeStamp: 1712649893991, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: true, + timeStamp: 1712649893993, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: true, + timeStamp: 1712649894016, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: true, + timeStamp: 1712649894144, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: true, + timeStamp: 1712649894341, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: true, + timeStamp: 1712649894344, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: true, + timeStamp: 1712649894551, + }, + ], + responseEvents: [], + }, + blockedReasons: ['NotOnPath', 'SameSiteLax'], + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + warningReasons: [], + }, + 'AECgoogle.com/': { + isBlocked: true, + parsedCookie: { + domain: '.google.com', + expires: '2024-09-29T13:56:56.309Z', + httpOnly: true, + name: 'AEC', + path: '/', + priority: 'Medium', + sameParty: false, + sameSite: 'Lax', + secure: true, + session: false, + size: 61, + sourcePort: 443, + sourceScheme: 'Secure', + value: 'AQTF6HyG1VGHI6o8fu3nQ-FoJdbMr-JjFktcDDgVZYiHk1wSKkdoi-oXoQ', + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: true, + timeStamp: 1712649840347, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: true, + timeStamp: 1712649843116, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: true, + timeStamp: 1712649893828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: true, + timeStamp: 1712649893991, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: true, + timeStamp: 1712649893994, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: true, + timeStamp: 1712649894016, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: true, + timeStamp: 1712649894145, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: true, + timeStamp: 1712649894341, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: true, + timeStamp: 1712649894345, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: true, + timeStamp: 1712649894552, + }, + ], + responseEvents: [], + }, + blockedReasons: ['SameSiteLax'], + analytics: { + platform: 'Google Ads', + category: 'Functional', + name: 'AEC', + domain: 'google.com', + description: + 'AEC cookies ensure that requests within a browsing session are made by the user, and not by other sites. These cookies prevent malicious sites from acting on behalf of a user without that user’s knowledge.', + retention: '6 months', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + warningReasons: [], + }, + 'cookietestrtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: 'Session', + name: 'cookietest', + partitioned: false, + path: '/', + sameSite: 'lax', + secure: false, + value: '1', + partitionKey: false, + size: 11, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [], + responseEvents: [], + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + 'stg_traffic_source_priorityrtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: '2024-04-09T08:34:56.000Z', + name: 'stg_traffic_source_priority', + partitioned: false, + path: '/', + sameSite: 'strict', + secure: false, + value: '1', + partitionKey: false, + size: 28, + httponly: false, + samesite: 'strict', + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893803, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893823, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896286, + }, + ], + responseEvents: [], + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_traffic_source_priority', + domain: '', + description: + 'Stores the type of traffic source that explains how the visitor reached your website.', + retention: '30 minutes', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + '_pk_ses.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59rtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: '2024-04-09T08:34:56.000Z', + name: '_pk_ses.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59', + partitioned: false, + path: '/', + sameSite: 'lax', + secure: true, + value: '*', + partitionKey: '', + size: 50, + priority: 'Medium', + httponly: false, + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893804, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896287, + }, + ], + responseEvents: [], + }, + analytics: { + platform: 'Matomo', + category: 'Analytics', + name: '_pk_ses*', + domain: '', + description: + 'Short lived cookies used to temporarily store data for the visit', + retention: '30 minutes', + dataController: 'Matomo', + gdprUrl: 'https://matomo.org/privacy-policy/', + wildcard: '1', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, +}; + +export const tabFrames = { + 'https://rtcamp.com': { + frameIds: [0], + frameType: 'outermost_frame', + isOnRWS: false, + }, + 'https://ads.kwanzoo.com': { + frameIds: [106], + frameType: 'sub_frame', + isOnRWS: false, + }, + 'https://td.doubleclick.net': { + frameIds: [107], + frameType: 'sub_frame', + isOnRWS: false, + }, + 'https://www.google.com': { + frameIds: [108, 109, 112], + frameType: 'sub_frame', + isOnRWS: false, + }, +}; + +export const libraryMatches = { + gsiV2: { + signatureMatches: 0, + matches: [], + moduleMatch: 0, + }, + gis: { + signatureMatches: 0, + matches: [], + }, + 'fb-comments': { + domQuerymatches: [], + }, + 'fb-likes': { + domQuerymatches: [], + }, + 'disqus-comments': { + domQuerymatches: [], + }, + 'jetpack-comments': { + domQuerymatches: [], + }, + 'jetpack-likes': { + domQuerymatches: [], + }, + reCaptcha: { + domQuerymatches: [ + 'script[src]: https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + 'script[src]: https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + ], + }, +}; + +export const data = { + cookieClassificationDataMapping: [ + { + title: 'Total cookies', + count: 29, + data: [ + { + label: 'Functional', + count: 3, + color: '#5CC971', + countClassName: 'text-functional', + }, + { + label: 'Marketing', + count: 6, + color: '#F3AE4E', + countClassName: 'text-uncategorised', + }, + { + label: 'Analytics', + count: 12, + color: '#4C79F4', + countClassName: 'text-uncategorised', + }, + { + label: 'Uncategorized', + count: 8, + color: '#EC7159', + countClassName: 'text-uncategorised', + }, + ], + }, + { + title: '1st party cookies', + count: 19, + data: [ + { + count: 0, + color: '#5CC971', + }, + { + count: 2, + color: '#F3AE4E', + }, + { + count: 12, + color: '#4C79F4', + }, + { + count: 5, + color: '#EC7159', + }, + ], + }, + { + title: '3rd party cookies', + count: 10, + data: [ + { + count: 3, + color: '#5CC971', + }, + { + count: 4, + color: '#F3AE4E', + }, + { + count: 0, + color: '#4C79F4', + }, + { + count: 3, + color: '#EC7159', + }, + ], + }, + ], + tabCookies: { + '_gcl_aurtcamp.com/': { + parsedCookie: { + name: '_gcl_au', + value: '1.1.1643004070.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2024-07-02T05:40:12.000Z', + partitionKey: '', + size: 32, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: 'Google', + category: 'Marketing', + name: '_gcl_au', + domain: '', + description: + 'Used by Google AdSense for experimenting with advertisement efficiency across websites using their services.', + retention: '3 months', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838658, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838663, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838679, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838685, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838694, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838713, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838838, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839204, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839623, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893820, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_user_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_user_id', + value: 'null', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 15, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_user_id', + domain: '.trustpilot.com', + description: + ' This cookie helps track visitor usage, events, target marketing, and can also measure application performance and stability.', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838679, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838685, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838694, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838715, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838839, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893820, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_group_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_group_id', + value: 'null', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 16, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_group_id', + domain: '.trustpilot.com', + description: 'Track visitor usage and events within the website', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838679, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838686, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838695, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838810, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893820, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'ajs_anonymous_idrtcamp.com/': { + parsedCookie: { + name: 'ajs_anonymous_id', + value: '%220eae481f-71ad-4118-9309-1f60ae8f9f6d%22', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-08T08:16:45.000Z', + partitionKey: '', + size: 58, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Trustpilot', + category: 'Analytics', + name: 'ajs_anonymous_id', + domain: '.trustpilot.com', + description: + 'Used for Analytics and help count how many people visit a certain site by tracking if you have visited before', + retention: '1 year', + dataController: 'Trustpilot', + gdprUrl: '', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838680, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838686, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838695, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893798, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896282, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_gartcamp.com/': { + parsedCookie: { + name: '_ga', + value: 'GA1.1.1593307359.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-14T08:03:59.200Z', + partitionKey: '', + size: 30, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: '_ga', + domain: 'google-analytics.com (3rd party) or', + description: 'ID used to identify users', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838659, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838680, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838687, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838696, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839205, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839625, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893799, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896283, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'FPIDrtcamp.com/': { + parsedCookie: { + name: 'FPID', + value: + 'FPID2.2.BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: true, + samesite: '', + expires: '2025-05-14T08:03:59.874Z', + partitionKey: '', + size: 71, + priority: 'Medium', + httpOnly: true, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: 'FPID', + domain: '', + description: + "Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.", + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838660, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838664, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838671, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838680, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838687, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838696, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839206, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839626, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893799, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896283, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839875, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839882, + }, + ], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'FPAUrtcamp.com/': { + parsedCookie: { + name: 'FPAU', + value: '1.1.1643004070.1712122812', + domain: '.rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: '2024-07-02T05:40:11.874Z', + partitionKey: '', + size: 29, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Marketing', + name: 'FPAU', + domain: '', + description: + 'Assigns a specific ID to the visitor. This allows the website to determine the number of specific user-visits for analysis and statistics.', + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838660, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838665, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838668, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838672, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838681, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838688, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838696, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838840, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839206, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839626, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893799, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893821, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896283, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839876, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839882, + }, + ], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'track_uidrtcamp.com/': { + parsedCookie: { + name: 'track_uid', + value: 'df985b92-a92b-7c79-35c7-3030565fd182', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-04-09T08:04:01.000Z', + partitionKey: '', + size: 45, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838661, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838665, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838669, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838673, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838682, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838688, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838697, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838841, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839206, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839626, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893800, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893822, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896284, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'stg_returning_visitorrtcamp.com/': { + parsedCookie: { + name: 'stg_returning_visitor', + value: 'Wed%2C%2003%20Apr%202024%2008:00:23%20GMT', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2025-04-03T08:00:23.000Z', + partitionKey: '', + size: 62, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'Strict', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_returning_visitor', + domain: '', + description: + 'Determines if the visitor has already been to your website — they are returning visitors.', + retention: '365 days', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838661, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838669, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838673, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838682, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838689, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838698, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838826, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838841, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: true, + timeStamp: 1712649839621, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893800, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893822, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896284, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + '_parsely_visitorrtcamp.com/': { + parsedCookie: { + name: '_parsely_visitor', + value: + '{%22id%22:%22pid=55cc8d59-04cf-4bcd-aaca-5e6bb9ca7cc4%22%2C%22session_count%22:10%2C%22last_session_ts%22:1712649839162}', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-09T18:05:00.000Z', + partitionKey: false, + size: 136, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838661, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838669, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838674, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838683, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838690, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838699, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838826, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838844, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839207, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839629, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893802, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893823, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896285, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_pk_id.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59rtcamp.com/': { + parsedCookie: { + name: '_pk_id.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59', + value: 'e232543d43714eb7.1712122813.9.1712649896.1712649840.', + domain: 'rtcamp.com', + path: '/', + secure: true, + httponly: false, + samesite: 'lax', + expires: '2025-05-07T08:04:56.000Z', + partitionKey: '', + size: 100, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'lax', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + }, + analytics: { + platform: 'Matomo', + category: 'Analytics', + name: '_pk_id*', + domain: '', + description: + 'Used to store a few details about the user such as the unique visitor ID', + retention: '13 months', + dataController: 'Matomo', + gdprUrl: 'https://matomo.org/privacy-policy/', + wildcard: '1', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838662, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838675, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838684, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838691, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838699, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838837, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838844, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: true, + timeStamp: 1712649839621, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893805, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896290, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + 'stg_last_interactionrtcamp.com/': { + parsedCookie: { + name: 'stg_last_interaction', + value: 'Tue%2C%2009%20Apr%202024%2008:04:56%20GMT', + domain: 'rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: 'strict', + expires: '2025-04-09T08:04:56.000Z', + partitionKey: false, + size: 61, + priority: 'Medium', + httpOnly: false, + sameParty: false, + sameSite: 'strict', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_last_interaction', + domain: '', + description: + "Determines whether the last visitor's session is still in progress or a new session has started.", + retention: '365 days', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + headerType: 'javascript', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838662, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838666, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838675, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838684, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838691, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838700, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838837, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838845, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: true, + timeStamp: 1712649839622, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893805, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896288, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + isBlocked: true, + blockedReasons: ['DomainMismatch'], + warningReasons: [], + }, + '_ga_7HKDVLRRV4rtcamp.com/': { + parsedCookie: { + name: '_ga_7HKDVLRRV4', + value: 'GS1.1.1712649839.11.0.1712649839.0.0.1798602937', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2025-05-14T08:03:59.200Z', + partitionKey: '', + size: 61, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: '_ga_*', + domain: 'google-analytics.com (3rd party) or ', + description: 'ID used to identify users', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '1', + }, + headerType: 'request', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13079', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2020/11/site-logo-black.svg', + blocked: false, + timeStamp: 1712649838662, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13080', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Google.svg', + blocked: false, + timeStamp: 1712649838667, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13081', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/10/meta-logo2.svg', + blocked: false, + timeStamp: 1712649838670, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13082', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/09/Automattic.svg', + blocked: false, + timeStamp: 1712649838676, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13089', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/NewsUK.svg', + blocked: false, + timeStamp: 1712649838685, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13090', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/PMC.svg', + blocked: false, + timeStamp: 1712649838692, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13092', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2022/05/Aljazeera.svg', + blocked: false, + timeStamp: 1712649838700, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13093', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2023/09/Award.svg', + blocked: false, + timeStamp: 1712649838838, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13094', + url: 'https://rtcamp.com/wp-content/uploads/sites/2/2021/03/google-logo-testimonials.svg', + blocked: false, + timeStamp: 1712649838845, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839207, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839630, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893802, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893823, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896286, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + '_parsely_sessionrtcamp.com/': { + parsedCookie: { + name: '_parsely_session', + value: + '{%22sid%22:10%2C%22surl%22:%22https://rtcamp.com/%22%2C%22sref%22:%22%22%2C%22sts%22:1712649839162%2C%22slts%22:1712581949558}', + domain: '.rtcamp.com', + path: '/', + secure: false, + httponly: false, + samesite: '', + expires: '2024-04-09T08:35:00.000Z', + partitionKey: false, + size: 142, + priority: 'Medium', + httpOnly: false, + sameParty: false, + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + partitioned: false, + sameSite: 'lax', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'javascript', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839207, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839628, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893801, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893822, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896284, + }, + ], + responseEvents: [], + }, + isFirstParty: true, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: [], + }, + 'warmly_b4dafe8509a5fd61b4850acb8a60c06bopps-api.getwarmly.com/api/sessions/trpc': + { + isBlocked: true, + parsedCookie: { + domain: 'opps-api.getwarmly.com', + expires: '2025-04-05T09:33:25.133Z', + httpOnly: true, + name: 'warmly_b4dafe8509a5fd61b4850acb8a60c06b', + path: '/api/sessions/trpc', + priority: 'Medium', + sameParty: false, + sameSite: 'None', + secure: true, + session: false, + size: 172, + sourcePort: 443, + sourceScheme: 'Secure', + value: + '%7B%22sessionId%22%3A%22c75eb9a9-9ae9-43b8-b3da-5ceabbf59d44%22%2C%22sessionUserId%22%3A%2210dd5156-c0b4-4b75-966d-bc1b66ab6263%22%7D', + samesite: 'none', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.124', + url: '', + blocked: true, + timeStamp: 1712649839387, + }, + ], + responseEvents: [], + }, + blockedReasons: ['NotOnPath', 'DomainMismatch'], + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + }, + 'FPLCrtcamp.com/': { + isBlocked: false, + blockedReasons: [], + parsedCookie: { + expires: '2024-04-10T04:03:59.874Z', + httponly: false, + secure: true, + path: '/', + domain: '.rtcamp.com', + samesite: '', + name: 'FPLC', + value: + '9cN4NZPh9L1TDUG1xtrXt9H%2BYwJihteKBHMDuZ9aDug1UQT8Y8XWjMkbh%2FCK9FcSi8XznsE9FnjtgaHtZpGd%2Ft7w5h%2Bfn%2Fc4%2BzAjYjPf%2FI9bYJT25qhdqJzArUMN9A%3D%3D', + partitionKey: '', + size: 150, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893804, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896287, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839876, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839882, + }, + ], + }, + analytics: { + platform: 'Google Analytics', + category: 'Analytics', + name: 'FPLC', + domain: '', + description: + 'This FPLC cookie is the cross-domain linker cookie hashed from the FPID cookie. It’s not HttpOnly, which means it can be read with JavaScript. It has a relatively short lifetime, just 20 hours.', + retention: 'session', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + isFirstParty: true, + headerType: 'request', + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + warningReasons: [], + }, + 'FPGSIDrtcamp.com/': { + isBlocked: false, + blockedReasons: [], + parsedCookie: { + expires: '2024-04-09T08:33:59.874Z', + httponly: false, + secure: true, + path: '/', + domain: '.rtcamp.com', + samesite: 'strict', + name: 'FPGSID', + value: '1.1712649839.1712649839.G-7HKDVLRRV4.j1V_g8v-o4K7I5OKVAh_sQ', + partitionKey: '', + size: 65, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893805, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896288, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.126', + url: '', + blocked: false, + timeStamp: 1712649839877, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13104', + url: 'https://ggsutfx.rtcamp.com/g/collect?v=2&tid=G-7HKDVLRRV4>m=45je4430v882644066z871645728za200&_p=1712649838568&gcd=13l3l3l3l1&npa=0&dma=0&cid=1593307359.1712122812&ecid=1798602937&ul=en-us&sr=1440x900&_fplc=0&ur=IN-KA&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&are=1&pae=1&pscdl=noapi&sst.uc=IN&sst.gse=1&sst.etld=google.co.in&sst.gcd=13l3l3l3l1&sst.tft=1712649838568&sst.ude=0&_s=1&sid=1712649839&sct=11&seg=0&dl=https%3A%2F%2Frtcamp.com%2F&dt=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&en=page_view&_ss=1&ep.content_group=Other&tfd=1037&richsstsse', + blocked: false, + timeStamp: 1712649839883, + }, + ], + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + isFirstParty: true, + headerType: 'request', + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + warningReasons: [], + }, + 'NIDgoogle.com/': { + parsedCookie: { + name: 'NID', + value: + '513=fEZHdYbXcRMAOF3ZPEA3vRl9Dm7-B9JLfpLpTrtY3gDHBfo77B_V95BsxRPFvj7YXREgcHTvevfSVQwA7uWRBks6qoX0kKjqJ4I2zPwGXO436kL3thFCJu9nDXhnmGj6_Arpl_OQ8r50YccBg8N7qSxa2Dt_bhE7DnuyrRK91bv69GFnGAnpGEzA7pvdyPxB_WX9SQpPQ4U', + domain: '.google.com', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-10-07T21:20:50.696Z', + partitionKey: '', + size: 210, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'Google', + category: 'Marketing', + name: 'NID', + domain: 'google.com', + description: + 'This cookies is used to collect website statistics and track conversion rates and Google ad personalisation', + retention: '1 year', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://analytics.google.com/g/s/collect?dma=0>m=45j91e4441h2v882644066z871645728z99177835882za200&_gsid=7HKDVLRRV4j1V_g8v-o4K7I5OKVAh_sQ', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13109', + url: 'https://analytics.google.com/g/s/collect?dma=0>m=45j91e4441h2v882644066z871645728z99177835882za200&_gsid=7HKDVLRRV4j1V_g8v-o4K7I5OKVAh_sQ', + blocked: false, + timeStamp: 1712649839884, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: false, + timeStamp: 1712649840347, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13137', + url: 'https://www.google.com/pagead/1p-user-list/11351157933/?random=1712649842806&cv=11&fst=1712649600000&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&fmt=3&is_vtc=1&cid=CAQSKQB7FLtqntrNHDTQ_a-Sh9toqS56hqCzynlmLgQqmXr8fV3VRVs4WeVb&random=4222396660&rmt_tld=0&ipr=y', + blocked: false, + timeStamp: 1712649843058, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: false, + timeStamp: 1712649843116, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: false, + timeStamp: 1712649893828, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13151', + url: 'https://accounts.google.com/gsi/client?ver=1670238691', + blocked: false, + timeStamp: 1712649893829, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13152', + url: 'https://accounts.google.com/gsi/style', + blocked: false, + timeStamp: 1712649893990, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: false, + timeStamp: 1712649893992, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: false, + timeStamp: 1712649893994, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13153', + url: 'https://accounts.google.com/gsi/status?client_id=549796576131-8aoqmiheqf84a8bh3dl10ec2kp2v6e7p.apps.googleusercontent.com&as=STPqYB%2FVV%2F9qmKJZpeo94A', + blocked: false, + timeStamp: 1712649894001, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: false, + timeStamp: 1712649894017, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13158', + url: 'https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + blocked: false, + timeStamp: 1712649894018, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13163', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649894142, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: false, + timeStamp: 1712649894146, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13169', + url: 'https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + blocked: false, + timeStamp: 1712649894150, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13170', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649894175, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: false, + timeStamp: 1712649894342, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: false, + timeStamp: 1712649894347, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13180', + url: 'https://www.google.com/js/bg/MAj5J5iEgh_vMgeickC5b2xvhmiD7VG83v9sx_9XVJI.js', + blocked: false, + timeStamp: 1712649894368, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13184', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894388, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13185', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894409, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: false, + timeStamp: 1712649894553, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13188', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894556, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13189', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894642, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13190', + url: 'https://www.google.com/js/bg/MAj5J5iEgh_vMgeickC5b2xvhmiD7VG83v9sx_9XVJI.js', + blocked: false, + timeStamp: 1712649894762, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13298', + url: 'https://accounts.google.com/gsi/style', + blocked: false, + timeStamp: 1712649896292, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13307', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649896294, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13311', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649896305, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13312', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649896313, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [108, 112, 109, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'JSESSIONIDads.kwanzoo.com/': { + blockedReasons: [ + 'SameSiteUnspecifiedTreatedAsLax', + 'ExcludeSameSiteUnspecifiedTreatedAsLax', + ], + warningReasons: ['WarnSameSiteUnspecifiedCrossSiteContext'], + isBlocked: true, + parsedCookie: { + name: 'JSESSIONID', + value: '809D976D9AF74A799AA63ECAEFEADD53', + domain: 'ads.kwanzoo.com', + path: '/', + secure: true, + httponly: false, + samesite: '', + expires: 0, + partitionKey: '', + size: 42, + priority: 'Medium', + }, + analytics: { + platform: 'J2EE', + category: 'Functional', + name: 'JSESSIONID*', + domain: '', + description: + 'JSESSIONID is a cookie generated by Servlet containers and used for session management in J2EE web applications for HTTP protocol. If a Web server is using a cookie for session management, it creates and sends JSESSIONID cookie to the client and then the client sends it back to the server in subsequent HTTP requests. JSESSIONID is a platform session cookie and is used by sites with JavaServer Pages (JSP). The cookie is used to maintain an anonymous user session by the server.', + retention: 'session', + dataController: 'J2EE', + gdprUrl: '', + wildcard: '1', + }, + url: 'https://ads.kwanzoo.com/embed-code/12716', + networkEvents: { + requestEvents: [], + responseEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13101', + url: 'https://ads.kwanzoo.com/embed-code/12716', + blocked: true, + timeStamp: 1712649839949, + }, + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: 'F4EF4E6A51A1059466A162665500CB39', + url: 'https://ads.kwanzoo.com/widget/inactive/12716', + blocked: true, + timeStamp: 1712649841164, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13111', + url: 'https://ads.kwanzoo.com/widget/inactive/12716', + blocked: true, + timeStamp: 1712649841167, + }, + ], + }, + headerType: 'response', + isFirstParty: false, + frameIdList: [106, 0], + blockingStatus: { + inboundBlock: 'BLOCKED_IN_ALL_EVENTS', + outboundBlock: 'NOT_BLOCKED', + }, + }, + 'ar_debugdoubleclick.net/': { + parsedCookie: { + name: 'ar_debug', + value: '1', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-05-05T06:17:14.801Z', + partitionKey: '', + size: 9, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'ar_debug', + domain: 'doubleclick.net', + description: 'Store and track conversions', + retention: 'Persistent', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13112', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712649839982, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.134', + url: '', + blocked: false, + timeStamp: 1712649840188, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13135', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712649842806&cv=11&fst=1712649842806&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712649842825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13136', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649842828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.150', + url: '', + blocked: false, + timeStamp: 1712649842975, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '704DD5D4D792F030A8AB9ABC9C058A42', + url: '', + blocked: false, + timeStamp: 1712649843026, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13310', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649896295, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [107, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'IDEdoubleclick.net/': { + parsedCookie: { + name: 'IDE', + value: + 'AHWqTUntbo9r3WXMBqKntf9Kmmoiu8TGRlI6Dk9N7YsxBDVIN3PiG8gseG6NChrjT6k', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2025-05-14T07:54:32.220Z', + partitionKey: '', + size: 70, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'IDE', + domain: 'doubleclick.net (3rd party)', + description: + 'This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite', + retention: '2 years', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13112', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712649839982, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.134', + url: '', + blocked: false, + timeStamp: 1712649840188, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13135', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712649842806&cv=11&fst=1712649842806&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712649842825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13136', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649842828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.150', + url: '', + blocked: false, + timeStamp: 1712649842976, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '704DD5D4D792F030A8AB9ABC9C058A42', + url: '', + blocked: false, + timeStamp: 1712649843026, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13310', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649896295, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [107, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'DSIDdoubleclick.net/': { + parsedCookie: { + name: 'DSID', + value: 'NO_DATA', + domain: '.doubleclick.net', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2024-04-09T08:54:33.500Z', + partitionKey: '', + size: 11, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: 'DoubleClick/Google Marketing', + category: 'Marketing', + name: 'DSID', + domain: 'doubleclick.net (3rd party)', + description: + 'This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite', + retention: '2 weeks', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + headerType: 'request', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13112', + url: 'https://stats.g.doubleclick.net/g/collect?v=2&dma=0&tid=G-7HKDVLRRV4&cid=BbK4osGDATp%2FUJYvpHnCoBghznOOng6Zu9R3wuq9nb0%3D.1712122812>m=45j91e4441h2v882644066z871645728z99177835882za200&aip=1', + blocked: false, + timeStamp: 1712649839983, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.134', + url: '', + blocked: false, + timeStamp: 1712649840189, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13135', + url: 'https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11351157933/?random=1712649842806&cv=11&fst=1712649842806&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1&rfmt=3&fmt=4', + blocked: false, + timeStamp: 1712649842825, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13136', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649842828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.150', + url: '', + blocked: false, + timeStamp: 1712649842976, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '704DD5D4D792F030A8AB9ABC9C058A42', + url: '', + blocked: false, + timeStamp: 1712649843027, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13310', + url: 'https://td.doubleclick.net/td/rul/11351157933?random=1712649842806&cv=11&fst=1712649842806&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4430z871645728za201&gcd=13l3l3l3l1&dma=0&u_w=1440&u_h=900&url=https%3A%2F%2Frtcamp.com%2F&hn=www.googleadservices.com&frm=0&tiba=Robust%20Enterprise%20WordPress%20Solutions%20%7C%20rtCamp&value=-995&npa=0&pscdl=noapi&auid=1643004070.1712122812&uaa=arm&uab=64&uafvl=Google%2520Chrome%3B123.0.6312.107%7CNot%253AA-Brand%3B8.0.0.0%7CChromium%3B123.0.6312.107&uamb=0&uam=&uap=macOS&uapv=14.3.0&uaw=0&fledge=1&data=event%3Dtest%3Bgoogle_business_vertical%3Dcustom%3Bid%3Dtest1', + blocked: false, + timeStamp: 1712649896295, + }, + ], + responseEvents: [], + }, + isFirstParty: false, + frameIdList: [107, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'tuida.usbrowserspeed.com/': { + parsedCookie: { + name: 'tuid', + value: '1eadd2b3-4c04-4400-906c-71d58120510a', + domain: 'a.usbrowserspeed.com', + path: '/', + secure: true, + httponly: true, + samesite: 'none', + expires: '2025-04-09T08:04:01.027Z', + partitionKey: '', + size: 40, + priority: 'Medium', + httpOnly: true, + sameParty: false, + sameSite: 'None', + session: false, + sourcePort: 443, + sourceScheme: 'Secure', + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + headerType: 'response', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13113', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + blocked: false, + timeStamp: 1712649840120, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.135', + url: '', + blocked: false, + timeStamp: 1712649840753, + }, + ], + responseEvents: [ + { + type: 'CDP_RESPONSE_RECEIVED_EXTRA_INFO', + requestId: '82785.135', + url: '', + blocked: false, + timeStamp: 1712649841025, + }, + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13113', + url: 'https://a.usbrowserspeed.com/metrics.js?pid=b92811d1223bc439179cdad26908fb731d6efd5a5e78bcec5d89bb4590870e06', + blocked: false, + timeStamp: 1712649841028, + }, + ], + }, + isFirstParty: false, + frameIdList: [0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + isBlocked: false, + blockedReasons: [], + warningReasons: ['WarnThirdPartyPhaseout'], + }, + '_GRECAPTCHAwww.google.com/recaptcha': { + isBlocked: true, + parsedCookie: { + domain: 'www.google.com', + expires: '2024-10-06T08:04:54.725Z', + httpOnly: true, + name: '_GRECAPTCHA', + path: '/recaptcha', + priority: 'High', + sameParty: false, + sameSite: 'None', + secure: true, + session: false, + size: 100, + sourcePort: 443, + sourceScheme: 'Secure', + value: + '09ABIEJouEaHgdO1cFbr1X9F69FvSW1TA4hefeRjfQpwlSVwkRSmYwrxz006dFw2R8FK3ECNOvT9iXt6HBfJwreQQ', + samesite: 'none', + partitionKey: '', + httponly: true, + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: true, + timeStamp: 1712649840346, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: true, + timeStamp: 1712649843115, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: true, + timeStamp: 1712649893827, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: true, + timeStamp: 1712649893990, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: true, + timeStamp: 1712649893993, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: false, + timeStamp: 1712649894016, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13158', + url: 'https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + blocked: false, + timeStamp: 1712649894017, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13163', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649894142, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: false, + timeStamp: 1712649894146, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13169', + url: 'https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + blocked: false, + timeStamp: 1712649894150, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13170', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649894174, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: false, + timeStamp: 1712649894342, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: false, + timeStamp: 1712649894345, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13184', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894388, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13185', + url: 'https://www.google.com/recaptcha/api2/webworker.js?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-', + blocked: false, + timeStamp: 1712649894409, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: false, + timeStamp: 1712649894552, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13188', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894555, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13189', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894641, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13307', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&theme=light&size=invisible&badge=bottomright&cb=64wrh1hrhyl0', + blocked: false, + timeStamp: 1712649896294, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13311', + url: 'https://www.google.com/recaptcha/api2/bframe?hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649896305, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13312', + url: 'https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&co=aHR0cHM6Ly9ydGNhbXAuY29tOjQ0Mw..&hl=en&v=rz4DvU-cY2JYCwHSTck0_qm-&size=invisible&cb=1jzcq6kj791e', + blocked: false, + timeStamp: 1712649896313, + }, + ], + responseEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_RESPONSE_STARTED', + requestId: '13189', + url: 'https://www.google.com/recaptcha/api2/reload?k=6Le6JpwaAAAAAFkASVap1OUThl-lQSJC0r9kLl2I', + blocked: false, + timeStamp: 1712649894727, + }, + ], + }, + blockedReasons: ['NotOnPath', 'DomainMismatch'], + analytics: { + platform: 'Google reCAPTCHA', + category: 'Functional', + name: '_GRECAPTCHA', + domain: 'google.com', + description: + 'Google reCAPTCHA sets a necessary cookie (_GRECAPTCHA) when executed for the purpose of providing its risk analysis.', + retention: '179 days', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [108, 112, 109, 0], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_SOME_EVENTS', + }, + warningReasons: ['WarnThirdPartyPhaseout'], + }, + 'SNIDgoogle.com/verify': { + isBlocked: true, + parsedCookie: { + domain: '.google.com', + expires: '2024-10-05T06:36:29.696Z', + httpOnly: true, + name: 'SNID', + path: '/verify', + priority: 'Medium', + sameParty: false, + sameSite: 'Lax', + secure: true, + session: false, + size: 103, + sourcePort: 443, + sourceScheme: 'Secure', + value: + 'AOYECSr1AIksFOU_JTnc2ZZ-4TzCOICD8R03NsbLY3NmJpowc-xGVCb-BN4PM0erTr7W32PjsGaYrtD9kva2AlNWHsra2M4iwX8', + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: true, + timeStamp: 1712649840346, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: true, + timeStamp: 1712649843115, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: true, + timeStamp: 1712649893827, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: true, + timeStamp: 1712649893991, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: true, + timeStamp: 1712649893993, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: true, + timeStamp: 1712649894016, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: true, + timeStamp: 1712649894144, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: true, + timeStamp: 1712649894341, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: true, + timeStamp: 1712649894344, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: true, + timeStamp: 1712649894551, + }, + ], + responseEvents: [], + }, + blockedReasons: ['NotOnPath', 'SameSiteLax'], + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + warningReasons: [], + }, + 'AECgoogle.com/': { + isBlocked: true, + parsedCookie: { + domain: '.google.com', + expires: '2024-09-29T13:56:56.309Z', + httpOnly: true, + name: 'AEC', + path: '/', + priority: 'Medium', + sameParty: false, + sameSite: 'Lax', + secure: true, + session: false, + size: 61, + sourcePort: 443, + sourceScheme: 'Secure', + value: 'AQTF6HyG1VGHI6o8fu3nQ-FoJdbMr-JjFktcDDgVZYiHk1wSKkdoi-oXoQ', + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.132', + url: '', + blocked: true, + timeStamp: 1712649840347, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.151', + url: '', + blocked: true, + timeStamp: 1712649843116, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.181', + url: '', + blocked: true, + timeStamp: 1712649893828, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.182', + url: '', + blocked: true, + timeStamp: 1712649893991, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.183', + url: '', + blocked: true, + timeStamp: 1712649893994, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.192', + url: '', + blocked: true, + timeStamp: 1712649894016, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '82785.208', + url: '', + blocked: true, + timeStamp: 1712649894145, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '171EF73AC49739330627AF0ECE168B24', + url: '', + blocked: true, + timeStamp: 1712649894341, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: '71BEDF59BFFA5B219605F36AF92F46A2', + url: '', + blocked: true, + timeStamp: 1712649894345, + }, + { + type: 'CDP_REQUEST_WILL_BE_SENT_EXTRA_INFO', + requestId: 'BC0D70D08304A7434BAB6334EFAC0866', + url: '', + blocked: true, + timeStamp: 1712649894552, + }, + ], + responseEvents: [], + }, + blockedReasons: ['SameSiteLax'], + analytics: { + platform: 'Google Ads', + category: 'Functional', + name: 'AEC', + domain: 'google.com', + description: + 'AEC cookies ensure that requests within a browsing session are made by the user, and not by other sites. These cookies prevent malicious sites from acting on behalf of a user without that user’s knowledge.', + retention: '6 months', + dataController: 'Google', + gdprUrl: 'https://privacy.google.com/take-control.html', + wildcard: '0', + }, + url: '', + headerType: 'request', + isFirstParty: false, + frameIdList: [], + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'BLOCKED_IN_ALL_EVENTS', + }, + warningReasons: [], + }, + 'cookietestrtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: 'Session', + name: 'cookietest', + partitioned: false, + path: '/', + sameSite: 'lax', + secure: false, + value: '1', + partitionKey: false, + size: 11, + priority: 'Medium', + }, + networkEvents: { + requestEvents: [], + responseEvents: [], + }, + analytics: { + platform: '', + category: 'Uncategorized', + name: '', + domain: '', + description: '', + retention: '', + dataController: '', + gdprUrl: '', + wildcard: '', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + 'stg_traffic_source_priorityrtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: '2024-04-09T08:34:56.000Z', + name: 'stg_traffic_source_priority', + partitioned: false, + path: '/', + sameSite: 'strict', + secure: false, + value: '1', + partitionKey: false, + size: 28, + httponly: false, + samesite: 'strict', + priority: 'Medium', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893803, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893823, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896286, + }, + ], + responseEvents: [], + }, + analytics: { + platform: 'Piwik', + category: 'Analytics', + name: 'stg_traffic_source_priority', + domain: '', + description: + 'Stores the type of traffic source that explains how the visitor reached your website.', + retention: '30 minutes', + dataController: 'Piwik', + gdprUrl: 'https://piwik.pro/privacy-policy/', + wildcard: '0', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + '_pk_ses.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59rtcamp.com/': { + parsedCookie: { + domain: 'rtcamp.com', + expires: '2024-04-09T08:34:56.000Z', + name: '_pk_ses.10c7acc6-abb4-44cd-82dc-44190bf2463d.de59', + partitioned: false, + path: '/', + sameSite: 'lax', + secure: true, + value: '*', + partitionKey: '', + size: 50, + priority: 'Medium', + httponly: false, + samesite: 'lax', + }, + networkEvents: { + requestEvents: [ + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13144', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/css/jetpack.css?ver=13.2.2', + blocked: false, + timeStamp: 1712649893804, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13149', + url: 'https://rtcamp.com/wp-content/mu-plugins/jetpack-13.2/jetpack_vendor/automattic/jetpack-image-cdn/dist/image-cdn.js?minify=false&ver=132249e245926ae3e188', + blocked: false, + timeStamp: 1712649893824, + }, + { + type: 'CHROME_WEBREQUEST_ON_BEFORE_SEND_HEADERS', + requestId: '13291', + url: 'https://rtcamp.com/', + blocked: false, + timeStamp: 1712649896287, + }, + ], + responseEvents: [], + }, + analytics: { + platform: 'Matomo', + category: 'Analytics', + name: '_pk_ses*', + domain: '', + description: + 'Short lived cookies used to temporarily store data for the visit', + retention: '30 minutes', + dataController: 'Matomo', + gdprUrl: 'https://matomo.org/privacy-policy/', + wildcard: '1', + }, + url: 'https://rtcamp.com/', + headerType: 'javascript', + frameIdList: [0], + blockedReasons: [], + warningReasons: [], + isBlocked: false, + isFirstParty: true, + blockingStatus: { + inboundBlock: 'NOT_BLOCKED', + outboundBlock: 'NOT_BLOCKED', + }, + }, + }, + cookiesStatsComponents: { + legend: [ + { + label: 'Functional', + count: 3, + color: '#5CC971', + countClassName: 'text-functional', + }, + { + label: 'Marketing', + count: 6, + color: '#F3AE4E', + countClassName: 'text-uncategorised', + }, + { + label: 'Analytics', + count: 12, + color: '#4C79F4', + countClassName: 'text-uncategorised', + }, + { + label: 'Uncategorized', + count: 8, + color: '#EC7159', + countClassName: 'text-uncategorised', + }, + ], + firstParty: [ + { + count: 0, + color: '#5CC971', + }, + { + count: 2, + color: '#F3AE4E', + }, + { + count: 12, + color: '#4C79F4', + }, + { + count: 5, + color: '#EC7159', + }, + ], + thirdParty: [ + { + count: 3, + color: '#5CC971', + }, + { + count: 4, + color: '#F3AE4E', + }, + { + count: 0, + color: '#4C79F4', + }, + { + count: 3, + color: '#EC7159', + }, + ], + blocked: [ + { + count: 5, + color: '#7D8471', + }, + { + count: 3, + color: '#79553D', + }, + { + count: 1, + color: '#FF7514', + }, + { + count: 1, + color: '#1C542D', + }, + { + count: 2, + color: '#FFA420', + }, + ], + blockedCookiesLegend: [ + { + label: 'DomainMismatch', + count: 5, + color: '#7D8471', + countClassName: 'text-battle-dress', + }, + { + label: 'NotOnPath', + count: 3, + color: '#79553D', + countClassName: 'text-brownstone', + }, + { + label: 'SameSiteUnspecifiedTreatedAsLax', + count: 1, + color: '#FF7514', + countClassName: 'text-sparks-in-green', + }, + { + label: 'ExcludeSameSiteUnspecifiedTreatedAsLax', + count: 1, + color: '#1C542D', + countClassName: 'text-jay-bird', + }, + { + label: 'SameSiteLax', + count: 2, + color: '#FFA420', + countClassName: 'text-honey-wax', + }, + ], + }, + tabFrames: { + 'https://rtcamp.com': { + frameIds: [0], + frameType: 'outermost_frame', + isOnRWS: false, + }, + 'https://ads.kwanzoo.com': { + frameIds: [106], + frameType: 'sub_frame', + isOnRWS: false, + }, + 'https://td.doubleclick.net': { + frameIds: [107], + frameType: 'sub_frame', + isOnRWS: false, + }, + 'https://www.google.com': { + frameIds: [108, 109, 112], + frameType: 'sub_frame', + isOnRWS: false, + }, + }, + showInfoIcon: true, + showHorizontalMatrix: false, + blockedCookieDataMapping: [ + { + title: 'Blocked cookies', + count: 8, + data: [ + { + count: 5, + color: '#7D8471', + }, + { + count: 3, + color: '#79553D', + }, + { + count: 1, + color: '#FF7514', + }, + { + count: 1, + color: '#1C542D', + }, + { + count: 2, + color: '#FFA420', + }, + ], + }, + ], + showBlockedInfoIcon: true, + frameStateCreator: { + dataMapping: [ + { + title: 'Frames', + count: 4, + data: [ + { + count: 4, + color: '#25ACAD', + }, + { + count: 3, + color: '#F54021', + }, + { + count: 3, + color: '#AF7AA3', + }, + { + count: 4, + color: '#C5A06A', + }, + { + count: 0, + color: '#A98307', + }, + ], + }, + ], + legend: [ + { + label: 'Total frames', + count: 4, + color: '#25ACAD', + countClassName: 'text-greenland-green', + }, + { + label: 'Frames with cookies', + count: 4, + color: '#C5A06A', + countClassName: 'text-good-life', + }, + { + label: 'Frames with blocked cookies', + count: 3, + color: '#AF7AA3', + countClassName: 'text-victorian-violet', + }, + { + label: 'Frames with unblocked cookies', + count: 3, + color: '#F54021', + countClassName: 'text-strawberry-spinach-red', + }, + { + label: 'Fenced frames', + count: 0, + color: '#A98307', + countClassName: 'text-chestnut-gold', + }, + ], + }, + libraryMatches: { + gsiV2: { + signatureMatches: 0, + matches: [], + moduleMatch: 0, + }, + gis: { + signatureMatches: 0, + matches: [], + }, + 'fb-comments': { + domQuerymatches: [], + }, + 'fb-likes': { + domQuerymatches: [], + }, + 'disqus-comments': { + domQuerymatches: [], + }, + 'jetpack-comments': { + domQuerymatches: [], + }, + 'jetpack-likes': { + domQuerymatches: [], + }, + reCaptcha: { + domQuerymatches: [ + 'script[src]: https://www.google.com/recaptcha/api.js?render=6LevJpwaAAAAAF2HVImidaxUBSH3OkRiyxvxAQE8&ver=1.4.0', + 'script[src]: https://www.google.com/recaptcha/api.js?hl=en&ver=6.4.3#038;render=explicit', + ], + }, + }, +}; diff --git a/packages/extension/src/utils/tests/generateReportObject.ts b/packages/extension/src/utils/tests/generateReportObject.ts new file mode 100644 index 000000000..69042533e --- /dev/null +++ b/packages/extension/src/utils/tests/generateReportObject.ts @@ -0,0 +1,27 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import generateReportObject from '../generateReportObject'; +import { data, libraryMatches, tabCookies, tabFrames } from './data.mock'; + +describe('generateReport', () => { + it('should generate report object', () => { + expect( + //@ts-ignore + generateReportObject(tabCookies, tabFrames, libraryMatches) + ).toEqual(data); + }); +}); From 6f61a0b5c0557bdcdd29532da9e479bf3e12213a Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Tue, 9 Apr 2024 16:44:26 +0530 Subject: [PATCH 22/23] ref: move dependencies and return null with invalid data --- .../extension/src/view/report/components/cookiesSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/extension/src/view/report/components/cookiesSection.tsx b/packages/extension/src/view/report/components/cookiesSection.tsx index 58cc99729..5684887b5 100644 --- a/packages/extension/src/view/report/components/cookiesSection.tsx +++ b/packages/extension/src/view/report/components/cookiesSection.tsx @@ -31,7 +31,7 @@ const CookiesSection = () => { const data = useData(({ state }) => state.data); if (!data) { - return <>; + return null; } return ( From 7b511b983eed14d4b3f114ca1bb528a0b185cee0 Mon Sep 17 00:00:00 2001 From: nirwalayush Date: Tue, 9 Apr 2024 16:45:31 +0530 Subject: [PATCH 23/23] ref: move dependencies and return null with invalid data --- packages/extension/src/view/report/components/framesSection.tsx | 2 +- packages/extension/src/view/report/index.tsx | 2 +- .../src/view/report/stateProviders/data/dataProvider.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/extension/src/view/report/components/framesSection.tsx b/packages/extension/src/view/report/components/framesSection.tsx index a55c0b602..8982b11b5 100644 --- a/packages/extension/src/view/report/components/framesSection.tsx +++ b/packages/extension/src/view/report/components/framesSection.tsx @@ -32,7 +32,7 @@ const CookiesSection = () => { const data = useData(({ state }) => state.data); if (!data) { - return <>; + return null; } const _data = data.frameStateCreator.legend.map((component) => { diff --git a/packages/extension/src/view/report/index.tsx b/packages/extension/src/view/report/index.tsx index 7905f1850..9503dd2dd 100644 --- a/packages/extension/src/view/report/index.tsx +++ b/packages/extension/src/view/report/index.tsx @@ -20,13 +20,13 @@ import React from 'react'; import { createRoot } from 'react-dom/client'; import { LibraryDetectionProvider } from '@ps-analysis-tool/library-detection'; +import { noop } from '@ps-analysis-tool/common'; /** * Internal dependencies */ import App from './app'; import { DataProvider } from './stateProviders/data'; -import { noop } from '@ps-analysis-tool/common'; //@ts-ignore this global mock is needed for the provider LibraryDetectionProvider and the component LibraryDetection to work chrome = { diff --git a/packages/extension/src/view/report/stateProviders/data/dataProvider.tsx b/packages/extension/src/view/report/stateProviders/data/dataProvider.tsx index 7da0e282e..ce193a1c1 100644 --- a/packages/extension/src/view/report/stateProviders/data/dataProvider.tsx +++ b/packages/extension/src/view/report/stateProviders/data/dataProvider.tsx @@ -17,11 +17,11 @@ * External dependencies. */ import React, { useEffect, useState, type PropsWithChildren } from 'react'; +import { useLibraryDetectionContext } from '@ps-analysis-tool/library-detection'; /** * Internal dependencies. */ import Context, { type DataStoreContext } from './context'; -import { useLibraryDetectionContext } from '@ps-analysis-tool/library-detection'; const Provider = ({ children }: PropsWithChildren) => { const [data, setData] = useState(null);