From 7a21184245fee90fece11e456119314e2d322c32 Mon Sep 17 00:00:00 2001 From: Dhanush Date: Tue, 24 Sep 2024 17:52:49 +0000 Subject: [PATCH] Added new blocking rules --- background.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/background.js b/background.js index 81a67c2..3e5095c 100644 --- a/background.js +++ b/background.js @@ -138,9 +138,15 @@ chrome.runtime.onInstalled.addListener(() => { priority: 1, action: { type: 'block' }, condition: { urlFilter: '*://*.googleads.g.doubleclick.net/*', resourceTypes: ['script', 'xmlhttprequest'] } + }, + { + id: 24, + priority: 1, + action: { type: 'block' }, + condition: { urlFilter: 'doubleverify.com', resourceTypes: ['script', 'image', 'xmlhttprequest'] } } // You can continue adding more blocking rules here... ], - removeRuleIds: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,21,22,23] + removeRuleIds: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24] }); });