@duckduckgo/autoconsent 10.9.0 → 10.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # v10.10.0 (Mon Jun 03 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Fix some reload loops on www.fidelity.co.uk and other Ensighten sites [#452](https://github.com/duckduckgo/autoconsent/pull/452) ([@muodov](https://github.com/muodov))
6
+ - Add a rule for ebay [#449](https://github.com/duckduckgo/autoconsent/pull/449) ([@muodov](https://github.com/muodov))
7
+
8
+ #### Authors: 1
9
+
10
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
11
+
12
+ ---
13
+
1
14
  # v10.9.0 (Tue May 28 2024)
2
15
 
3
16
  #### 🚀 Enhancement
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 2,
3
3
  "name": "Autoconsent",
4
- "version": "2024.5.14",
4
+ "version": "2024.5.28",
5
5
  "background": {
6
6
  "scripts": [
7
7
  "background.bundle.js"
@@ -2594,6 +2594,39 @@
2594
2594
  }
2595
2595
  ]
2596
2596
  },
2597
+ {
2598
+ "name": "ebay",
2599
+ "vendorUrl": "https://ebay.com",
2600
+ "cosmetic": false,
2601
+ "runContext": {
2602
+ "main": true,
2603
+ "frame": false,
2604
+ "urlPattern": "^https://(www\\.)?ebay\\.([.a-z]+)/"
2605
+ },
2606
+ "prehideSelectors": [
2607
+ "#gdpr-banner"
2608
+ ],
2609
+ "detectCmp": [
2610
+ {
2611
+ "exists": "#gdpr-banner"
2612
+ }
2613
+ ],
2614
+ "detectPopup": [
2615
+ {
2616
+ "visible": "#gdpr-banner"
2617
+ }
2618
+ ],
2619
+ "optIn": [
2620
+ {
2621
+ "waitForThenClick": "#gdpr-banner-accept"
2622
+ }
2623
+ ],
2624
+ "optOut": [
2625
+ {
2626
+ "waitForThenClick": "#gdpr-banner-decline"
2627
+ }
2628
+ ]
2629
+ },
2597
2630
  {
2598
2631
  "name": "ecosia",
2599
2632
  "vendorUrl": "https://www.ecosia.org/",
@@ -2636,7 +2669,7 @@
2636
2669
  ],
2637
2670
  "detectPopup": [
2638
2671
  {
2639
- "visible": ".ensModal"
2672
+ "visible": "#ensModalWrapper[style*=block]"
2640
2673
  }
2641
2674
  ],
2642
2675
  "optIn": [
@@ -2645,6 +2678,12 @@
2645
2678
  }
2646
2679
  ],
2647
2680
  "optOut": [
2681
+ {
2682
+ "wait": 500
2683
+ },
2684
+ {
2685
+ "visible": "#ensModalWrapper[style*=block]"
2686
+ },
2648
2687
  {
2649
2688
  "waitForThenClick": ".ensCheckbox:checked",
2650
2689
  "all": true
@@ -2666,7 +2705,7 @@
2666
2705
  ],
2667
2706
  "detectPopup": [
2668
2707
  {
2669
- "visible": "#ensNotifyBanner"
2708
+ "visible": "#ensNotifyBanner[style*=block]"
2670
2709
  }
2671
2710
  ],
2672
2711
  "optIn": [
@@ -2676,7 +2715,13 @@
2676
2715
  ],
2677
2716
  "optOut": [
2678
2717
  {
2679
- "waitForThenClick": "#ensRejectAll,#rejectAll,#ensRejectBanner"
2718
+ "wait": 500
2719
+ },
2720
+ {
2721
+ "visible": "#ensNotifyBanner[style*=block]"
2722
+ },
2723
+ {
2724
+ "waitForThenClick": "#ensRejectAll,#rejectAll,#ensRejectBanner,.rejectAll"
2680
2725
  }
2681
2726
  ]
2682
2727
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Autoconsent",
4
- "version": "2024.5.14",
4
+ "version": "2024.5.28",
5
5
  "background": {
6
6
  "service_worker": "background.bundle.js"
7
7
  },
@@ -2594,6 +2594,39 @@
2594
2594
  }
2595
2595
  ]
2596
2596
  },
2597
+ {
2598
+ "name": "ebay",
2599
+ "vendorUrl": "https://ebay.com",
2600
+ "cosmetic": false,
2601
+ "runContext": {
2602
+ "main": true,
2603
+ "frame": false,
2604
+ "urlPattern": "^https://(www\\.)?ebay\\.([.a-z]+)/"
2605
+ },
2606
+ "prehideSelectors": [
2607
+ "#gdpr-banner"
2608
+ ],
2609
+ "detectCmp": [
2610
+ {
2611
+ "exists": "#gdpr-banner"
2612
+ }
2613
+ ],
2614
+ "detectPopup": [
2615
+ {
2616
+ "visible": "#gdpr-banner"
2617
+ }
2618
+ ],
2619
+ "optIn": [
2620
+ {
2621
+ "waitForThenClick": "#gdpr-banner-accept"
2622
+ }
2623
+ ],
2624
+ "optOut": [
2625
+ {
2626
+ "waitForThenClick": "#gdpr-banner-decline"
2627
+ }
2628
+ ]
2629
+ },
2597
2630
  {
2598
2631
  "name": "ecosia",
2599
2632
  "vendorUrl": "https://www.ecosia.org/",
@@ -2636,7 +2669,7 @@
2636
2669
  ],
2637
2670
  "detectPopup": [
2638
2671
  {
2639
- "visible": ".ensModal"
2672
+ "visible": "#ensModalWrapper[style*=block]"
2640
2673
  }
2641
2674
  ],
2642
2675
  "optIn": [
@@ -2645,6 +2678,12 @@
2645
2678
  }
2646
2679
  ],
2647
2680
  "optOut": [
2681
+ {
2682
+ "wait": 500
2683
+ },
2684
+ {
2685
+ "visible": "#ensModalWrapper[style*=block]"
2686
+ },
2648
2687
  {
2649
2688
  "waitForThenClick": ".ensCheckbox:checked",
2650
2689
  "all": true
@@ -2666,7 +2705,7 @@
2666
2705
  ],
2667
2706
  "detectPopup": [
2668
2707
  {
2669
- "visible": "#ensNotifyBanner"
2708
+ "visible": "#ensNotifyBanner[style*=block]"
2670
2709
  }
2671
2710
  ],
2672
2711
  "optIn": [
@@ -2676,7 +2715,13 @@
2676
2715
  ],
2677
2716
  "optOut": [
2678
2717
  {
2679
- "waitForThenClick": "#ensRejectAll,#rejectAll,#ensRejectBanner"
2718
+ "wait": 500
2719
+ },
2720
+ {
2721
+ "visible": "#ensNotifyBanner[style*=block]"
2722
+ },
2723
+ {
2724
+ "waitForThenClick": "#ensRejectAll,#rejectAll,#ensRejectBanner,.rejectAll"
2680
2725
  }
2681
2726
  ]
2682
2727
  },