Skip to content

Conversation

@kzar
Copy link
Collaborator

@kzar kzar commented Oct 28, 2025

Add an initial configuration for the new Request Blocklist feature. Include a
couple of testing rules, for the privacy test page[1]. Also include a
corresponding Tracker Allowlist rule for the test page as well.

The feature is only implemented for the extension so far, so let's enable it
there but leave it disabled for other platforms.

1 - https://privacy-test-pages.site/privacy-protections/request-blocklist/

Feature change process:

  • I have added a schema to validate this feature change.
  • I have tested this change locally in all supported browsers.
  • This code for the config change is ready to merge.
  • This feature was covered by a tech design.

Note

Adds a new Request Blocklist feature with initial test rules, updates schema, enables it for the extension, and adds a matching tracker allowlist entry for test pages.

  • Request Blocklist feature:
    • Add features/request-blocklist.json (state: disabled) with initial testing rules for privacy-test-pages.site and third-party.site.
    • Enable feature for the extension via overrides/extension-override.json (features.requestBlocklist.state: enabled).
    • Define schema: add schema/features/request-blocklist.ts and wire into schema/config.ts (RequestBlocklistFeature import and optional features.requestBlocklist).
  • Tracker Allowlist:
    • Add allowlist entry for third-party.site scoped to privacy-test-pages.site in features/tracker-allowlist.json.

Written by Cursor Bugbot for commit 44192cf. This will update automatically on new commits. Configure here.

kzar added a commit to kzar/privacy-test-pages that referenced this pull request Oct 28, 2025
Add a simple test page for the Request Blocklist feature, that acts as a quick
way for folks to test and see visually if the feature is enabled and working.

Notes:
 - For detailed testing of the feature's edge-cases, see the reference tests[1].
 - For automated integration tests, prefer the Request Blocking test page[2],
   which can be used with an empty blocklist and suitable configuration to check
   that requests are being blocked as expected.
 - See corresponding configuration changes[3].

1 - https://github.com/duckduckgo/privacy-reference-tests/tree/main/request-blocklist
2 - https://privacy-test-pages.site/privacy-protections/request-blocking/
3 - duckduckgo/privacy-configuration#3990
@github-actions
Copy link

👋 Don't forget to add an individual reviewer (in addition to those auto-added), as this will create a task for them in Asana.

👉 Please mark this as DRAFT unless there's an intention to merge this immediately.
👉 Click "Merge when ready" if you're happy for this to be automatically merged once reviewed. (If not available, ensure you've signed in to DuckDuckGo oauth.)
👉 Don't forget to add schema changes to validate if you're adding/changing a feature.

@github-actions
Copy link

github-actions bot commented Oct 28, 2025

Generated file outputs:

Time updated: Tue, 04 Nov 2025 14:45:12 GMT

legacy
trackers-unprotected-temporary.txt

⚠️ File is identical

4 files changed
  • v3/android-config.json
  • v3/ios-config.json
  • v3/macos-config.json
  • v3/windows-config.json
--- v3/windows-config.json (and 3 other files)
+++ v3/windows-config.json
@@ -96134,8 +96134,38 @@
         "remoteMessaging": {
             "state": "enabled",
             "exceptions": []
         },
+        "requestBlocklist": {
+            "state": "disabled",
+            "settings": {
+                "blockedRequests": {
+                    "privacy-test-pages.site": {
+                        "rules": [
+                            {
+                                "rule": "privacy-test-pages.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "third-party.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    }
+                }
+            },
+            "exceptions": []
+        },
         "requestFilterer": {
             "state": "enabled",
             "exceptions": [
                 {
@@ -100548,8 +100578,19 @@
                                 "reason": "https://github.com/duckduckgo/privacy-configuration/issues/1107"
                             }
                         ]
                     },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "allowlisted.third-party.site",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test pages"
+                            }
+                        ]
+                    },
                     "tidiochat.com": {
                         "rules": [
                             {
                                 "rule": "tidiochat.com",
10 files changed
  • v3/extension-brave-config.json
  • v3/extension-bravemv3-config.json
  • v3/extension-chrome-config.json
  • v3/extension-chromemv3-config.json
  • v3/extension-config.json
  • v3/extension-edg-config.json
  • v3/extension-edge-config.json
  • v3/extension-edgmv3-config.json
  • v3/extension-firefox-config.json
  • v3/extension-safarimv3-config.json
--- v3/extension-safarimv3-config.json (and 9 other files)
+++ v3/extension-safarimv3-config.json
@@ -8186,8 +8186,38 @@
         "remoteMessaging": {
             "state": "disabled",
             "exceptions": []
         },
+        "requestBlocklist": {
+            "state": "enabled",
+            "settings": {
+                "blockedRequests": {
+                    "privacy-test-pages.site": {
+                        "rules": [
+                            {
+                                "rule": "privacy-test-pages.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "third-party.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    }
+                }
+            },
+            "exceptions": []
+        },
         "requestFilterer": {
             "state": "disabled",
             "exceptions": [
                 {
@@ -12489,8 +12519,19 @@
                                 "reason": "https://github.com/duckduckgo/privacy-configuration/issues/1107"
                             }
                         ]
                     },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "allowlisted.third-party.site",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test pages"
+                            }
+                        ]
+                    },
                     "tidiochat.com": {
                         "rules": [
                             {
                                 "rule": "tidiochat.com",
4 files changed
  • v4/android-config.json
  • v4/ios-config.json
  • v4/macos-config.json
  • v4/windows-config.json
--- v4/windows-config.json (and 3 other files)
+++ v4/windows-config.json
@@ -95580,8 +95580,38 @@
         "remoteMessaging": {
             "state": "enabled",
             "exceptions": []
         },
+        "requestBlocklist": {
+            "state": "disabled",
+            "settings": {
+                "blockedRequests": {
+                    "privacy-test-pages.site": {
+                        "rules": [
+                            {
+                                "rule": "privacy-test-pages.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "third-party.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    }
+                }
+            },
+            "exceptions": []
+        },
         "requestFilterer": {
             "state": "enabled",
             "exceptions": [
                 {
@@ -99598,8 +99628,18 @@
                                 ]
                             }
                         ]
                     },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "allowlisted.third-party.site",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ]
+                            }
+                        ]
+                    },
                     "tidiochat.com": {
                         "rules": [
                             {
                                 "rule": "tidiochat.com",
10 files changed
  • v4/extension-brave-config.json
  • v4/extension-bravemv3-config.json
  • v4/extension-chrome-config.json
  • v4/extension-chromemv3-config.json
  • v4/extension-config.json
  • v4/extension-edg-config.json
  • v4/extension-edge-config.json
  • v4/extension-edgmv3-config.json
  • v4/extension-firefox-config.json
  • v4/extension-safarimv3-config.json
--- v4/extension-safarimv3-config.json (and 9 other files)
+++ v4/extension-safarimv3-config.json
@@ -7516,8 +7516,38 @@
         "remoteMessaging": {
             "state": "disabled",
             "exceptions": []
         },
+        "requestBlocklist": {
+            "state": "enabled",
+            "settings": {
+                "blockedRequests": {
+                    "privacy-test-pages.site": {
+                        "rules": [
+                            {
+                                "rule": "privacy-test-pages.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "third-party.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    }
+                }
+            },
+            "exceptions": []
+        },
         "requestFilterer": {
             "state": "disabled",
             "exceptions": [
                 {
@@ -11406,8 +11436,18 @@
                                 ]
                             }
                         ]
                     },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "allowlisted.third-party.site",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ]
+                            }
+                        ]
+                    },
                     "tidiochat.com": {
                         "rules": [
                             {
                                 "rule": "tidiochat.com",
latest
4 files changed
  • v5/android-config.json
  • v5/ios-config.json
  • v5/macos-config.json
  • v5/windows-config.json
--- v5/windows-config.json (and 3 other files)
+++ v5/windows-config.json
@@ -95580,8 +95580,38 @@
         "remoteMessaging": {
             "state": "enabled",
             "exceptions": []
         },
+        "requestBlocklist": {
+            "state": "disabled",
+            "settings": {
+                "blockedRequests": {
+                    "privacy-test-pages.site": {
+                        "rules": [
+                            {
+                                "rule": "privacy-test-pages.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "third-party.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    }
+                }
+            },
+            "exceptions": []
+        },
         "requestFilterer": {
             "state": "enabled",
             "exceptions": [
                 {
@@ -99598,8 +99628,18 @@
                                 ]
                             }
                         ]
                     },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "allowlisted.third-party.site",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ]
+                            }
+                        ]
+                    },
                     "tidiochat.com": {
                         "rules": [
                             {
                                 "rule": "tidiochat.com",
10 files changed
  • v5/extension-brave-config.json
  • v5/extension-bravemv3-config.json
  • v5/extension-chrome-config.json
  • v5/extension-chromemv3-config.json
  • v5/extension-config.json
  • v5/extension-edg-config.json
  • v5/extension-edge-config.json
  • v5/extension-edgmv3-config.json
  • v5/extension-firefox-config.json
  • v5/extension-safarimv3-config.json
--- v5/extension-safarimv3-config.json (and 9 other files)
+++ v5/extension-safarimv3-config.json
@@ -7516,8 +7516,38 @@
         "remoteMessaging": {
             "state": "disabled",
             "exceptions": []
         },
+        "requestBlocklist": {
+            "state": "enabled",
+            "settings": {
+                "blockedRequests": {
+                    "privacy-test-pages.site": {
+                        "rules": [
+                            {
+                                "rule": "privacy-test-pages.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "third-party.site/privacy-protections/request-blocklist/*?block=true",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ],
+                                "reason": "Testing rule for the privacy test page, see https://privacy-test-pages.site/privacy-protections/request-blocklist/"
+                            }
+                        ]
+                    }
+                }
+            },
+            "exceptions": []
+        },
         "requestFilterer": {
             "state": "disabled",
             "exceptions": [
                 {
@@ -11406,8 +11436,18 @@
                                 ]
                             }
                         ]
                     },
+                    "third-party.site": {
+                        "rules": [
+                            {
+                                "rule": "allowlisted.third-party.site",
+                                "domains": [
+                                    "privacy-test-pages.site"
+                                ]
+                            }
+                        ]
+                    },
                     "tidiochat.com": {
                         "rules": [
                             {
                                 "rule": "tidiochat.com",

@github-actions
Copy link

github-actions bot commented Oct 28, 2025

JSON approval analysis:

Time updated: Tue, 04 Nov 2025 14:45:19 GMT

legacy

❌ Manual Review Required

  • v3/android-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-brave-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-bravemv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-chrome-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-chromemv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-edg-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-edge-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-edgmv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-firefox-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/extension-safarimv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/ios-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/macos-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v3/windows-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/android-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-brave-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-bravemv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-chrome-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-chromemv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-edg-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-edge-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-edgmv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-firefox-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/extension-safarimv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/ios-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/macos-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v4/windows-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
latest

❌ Manual Review Required

  • v5/android-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-brave-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-bravemv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-chrome-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-chromemv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-edg-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-edge-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-edgmv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-firefox-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/extension-safarimv3-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/ios-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/macos-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes
  • v5/windows-config.json (2 total changes)
    Disallowed paths that require review:
    • /features/requestBlocklist (add)
      1 auto-approvable changes

🎯 OVERALL APPROVAL STATUS

❌ MANUAL REVIEW REQUIRED

kzar added a commit to kzar/privacy-test-pages that referenced this pull request Oct 29, 2025
Add a simple test page for the Request Blocklist feature, that acts as a quick
way for folks to test and see visually if the feature is enabled and working.

Notes:
 - For detailed testing of the feature's edge-cases, see the reference tests[1].
 - For automated integration tests, prefer the Request Blocking test page[2],
   which can be used with an empty blocklist and suitable configuration to check
   that requests are being blocked as expected.
 - See corresponding configuration changes[3].

1 - https://github.com/duckduckgo/privacy-reference-tests/tree/main/request-blocklist
2 - https://privacy-test-pages.site/privacy-protections/request-blocking/
3 - duckduckgo/privacy-configuration#3990
kzar added a commit to kzar/privacy-test-pages that referenced this pull request Oct 30, 2025
Add a simple test page for the Request Blocklist feature, that acts as a quick
way for folks to test and see visually if the feature is enabled and working.

Notes:
 - For detailed testing of the feature's edge-cases, see the reference tests[1].
 - For automated integration tests, prefer the Request Blocking test page[2],
   which can be used with an empty blocklist and suitable configuration to check
   that requests are being blocked as expected.
 - See corresponding configuration changes[3].

1 - https://github.com/duckduckgo/privacy-reference-tests/tree/main/request-blocklist
2 - https://privacy-test-pages.site/privacy-protections/request-blocking/
3 - duckduckgo/privacy-configuration#3990
kzar added a commit to kzar/privacy-test-pages that referenced this pull request Oct 30, 2025
Add a simple test page for the Request Blocklist feature, that acts as a quick
way for folks to test and see visually if the feature is enabled and working.

Notes:
 - For detailed testing of the feature's edge-cases, see the reference tests[1].
 - For automated integration tests, prefer the Request Blocking test page[2],
   which can be used with an empty blocklist and suitable configuration to check
   that requests are being blocked as expected.
 - See corresponding configuration changes[3].

1 - https://github.com/duckduckgo/privacy-reference-tests/tree/main/request-blocklist
2 - https://privacy-test-pages.site/privacy-protections/request-blocking/
3 - duckduckgo/privacy-configuration#3990
kzar added a commit to kzar/privacy-test-pages that referenced this pull request Oct 30, 2025
Add a simple test page for the Request Blocklist feature, that acts as a quick
way for folks to test and see visually if the feature is enabled and working.

Notes:
 - For detailed testing of the feature's edge-cases, see the reference tests[1].
 - For automated integration tests, prefer the Request Blocking test page[2],
   which can be used with an empty blocklist and suitable configuration to check
   that requests are being blocked as expected.
 - See corresponding configuration changes[3].

1 - https://github.com/duckduckgo/privacy-reference-tests/tree/main/request-blocklist
2 - https://privacy-test-pages.site/privacy-protections/request-blocking/
3 - duckduckgo/privacy-configuration#3990
kzar added a commit to duckduckgo/privacy-test-pages that referenced this pull request Oct 30, 2025
Add a simple test page for the Request Blocklist feature, that acts as a quick
way for folks to test and see visually if the feature is enabled and working.

Notes:
 - For detailed testing of the feature's edge-cases, see the reference tests[1].
 - For automated integration tests, prefer the Request Blocking test page[2],
   which can be used with an empty blocklist and suitable configuration to check
   that requests are being blocked as expected.
 - See corresponding configuration changes[3].

1 - https://github.com/duckduckgo/privacy-reference-tests/tree/main/request-blocklist
2 - https://privacy-test-pages.site/privacy-protections/request-blocking/
3 - duckduckgo/privacy-configuration#3990
@kzar kzar force-pushed the kzar/request-blocklist branch from 833191e to cd6e222 Compare October 31, 2025 11:19
@kzar kzar marked this pull request as ready for review October 31, 2025 12:02
@kzar kzar requested review from a team and daxtheduck as code owners October 31, 2025 12:02
@kzar kzar force-pushed the kzar/request-blocklist branch from cd6e222 to 1b3aa6f Compare October 31, 2025 12:05
github-actions bot pushed a commit that referenced this pull request Oct 31, 2025
@kzar kzar requested a review from dharb October 31, 2025 12:09
@kzar kzar enabled auto-merge October 31, 2025 12:09
@kzar kzar force-pushed the kzar/request-blocklist branch from 1b3aa6f to 3a31aea Compare November 4, 2025 10:16
@kzar kzar requested a review from a team as a code owner November 4, 2025 10:16
@github-actions github-actions bot requested a review from dharb November 4, 2025 10:17
github-actions bot pushed a commit that referenced this pull request Nov 4, 2025
@kzar kzar force-pushed the kzar/request-blocklist branch from 3a31aea to e9238ea Compare November 4, 2025 10:19
github-actions bot pushed a commit that referenced this pull request Nov 4, 2025
@kzar kzar disabled auto-merge November 4, 2025 10:29
@kzar kzar marked this pull request as draft November 4, 2025 10:29
@kzar kzar force-pushed the kzar/request-blocklist branch from e9238ea to 77d1017 Compare November 4, 2025 10:33
github-actions bot pushed a commit that referenced this pull request Nov 4, 2025
Add an initial configuration for the new Request Blocklist feature. Include a
couple of testing rules, for the privacy test page[1]. Also include a
corresponding Tracker Allowlist rule for the test page as well.

The feature is only implemented for the extension so far, so let's enable it
there but leave it disabled for other platforms.

1 - https://privacy-test-pages.site/privacy-protections/request-blocklist/
@kzar kzar force-pushed the kzar/request-blocklist branch from 77d1017 to 44192cf Compare November 4, 2025 10:40
github-actions bot pushed a commit that referenced this pull request Nov 4, 2025
@kzar kzar marked this pull request as ready for review November 4, 2025 10:46
@kzar kzar enabled auto-merge November 4, 2025 10:46
Copy link
Collaborator

@dharb dharb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@kzar kzar added this pull request to the merge queue Nov 4, 2025
Merged via the queue into main with commit fa0de99 Nov 4, 2025
18 of 19 checks passed
@kzar kzar deleted the kzar/request-blocklist branch November 4, 2025 14:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants