@duckduckgo/autoconsent 6.6.0 → 6.7.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,30 @@
1
+ # v6.7.0 (Thu Dec 28 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Add a rule for ciaopeople.it [#320](https://github.com/duckduckgo/autoconsent/pull/320) ([@seia-soto](https://github.com/seia-soto) [@muodov](https://github.com/muodov))
6
+ - Add a rule for roofingmegastore.co.uk [#325](https://github.com/duckduckgo/autoconsent/pull/325) ([@seia-soto](https://github.com/seia-soto))
7
+ - Add a rule for csu-landtag.de [#324](https://github.com/duckduckgo/autoconsent/pull/324) ([@seia-soto](https://github.com/seia-soto))
8
+
9
+ #### Authors: 2
10
+
11
+ - HoJeong Go ([@seia-soto](https://github.com/seia-soto))
12
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
13
+
14
+ ---
15
+
16
+ # v6.6.1 (Wed Dec 27 2023)
17
+
18
+ #### 🐛 Bug Fix
19
+
20
+ - Add a deferred check for usercentrics [#322](https://github.com/duckduckgo/autoconsent/pull/322) ([@seia-soto](https://github.com/seia-soto))
21
+
22
+ #### Authors: 1
23
+
24
+ - HoJeong Go ([@seia-soto](https://github.com/seia-soto))
25
+
26
+ ---
27
+
1
28
  # v6.6.0 (Wed Dec 20 2023)
2
29
 
3
30
  #### 🚀 Enhancement
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 2,
3
3
  "name": "Autoconsent",
4
- "version": "2023.12.19",
4
+ "version": "2023.12.27",
5
5
  "background": {
6
6
  "scripts": [
7
7
  "background.bundle.js"
@@ -883,6 +883,44 @@
883
883
  }
884
884
  ]
885
885
  },
886
+ {
887
+ "name": "ciaopeople.it",
888
+ "prehideSelectors": [
889
+ "#cp-gdpr-choices"
890
+ ],
891
+ "detectCmp": [
892
+ {
893
+ "exists": "#cp-gdpr-choices"
894
+ }
895
+ ],
896
+ "detectPopup": [
897
+ {
898
+ "visible": "#cp-gdpr-choices"
899
+ }
900
+ ],
901
+ "optIn": [
902
+ {
903
+ "waitForThenClick": ".gdpr-btm__right > button:nth-child(2)"
904
+ }
905
+ ],
906
+ "optOut": [
907
+ {
908
+ "waitForThenClick": ".gdpr-top-content > button"
909
+ },
910
+ {
911
+ "waitFor": ".gdpr-top-back"
912
+ },
913
+ {
914
+ "waitForThenClick": ".gdpr-btm__right > button:nth-child(1)"
915
+ }
916
+ ],
917
+ "test": [
918
+ {
919
+ "visible": "#cp-gdpr-choices",
920
+ "check": "none"
921
+ }
922
+ ]
923
+ },
886
924
  {
887
925
  "vendorUrl": "https://www.civicuk.com/cookie-control/",
888
926
  "name": "civic-cookie-control",
@@ -1661,6 +1699,35 @@
1661
1699
  }
1662
1700
  ]
1663
1701
  },
1702
+ {
1703
+ "name": "csu-landtag-de",
1704
+ "runContext": {
1705
+ "urlPattern": "^https://(www|)?\\.csu-landtag\\.de"
1706
+ },
1707
+ "prehideSelectors": [
1708
+ "#cookie-disclaimer"
1709
+ ],
1710
+ "detectCmp": [
1711
+ {
1712
+ "exists": "#cookie-disclaimer"
1713
+ }
1714
+ ],
1715
+ "detectPopup": [
1716
+ {
1717
+ "visible": "#cookie-disclaimer"
1718
+ }
1719
+ ],
1720
+ "optIn": [
1721
+ {
1722
+ "click": "#cookieall"
1723
+ }
1724
+ ],
1725
+ "optOut": [
1726
+ {
1727
+ "click": "#cookiesel"
1728
+ }
1729
+ ]
1730
+ },
1664
1731
  {
1665
1732
  "name": "dailymotion-us",
1666
1733
  "cosmetic": true,
@@ -3914,6 +3981,38 @@
3914
3981
  }
3915
3982
  ]
3916
3983
  },
3984
+ {
3985
+ "name": "roofingmegastore.co.uk",
3986
+ "runContext": {
3987
+ "urlPattern": "^https://(www\\.)?roofingmegastore\\.co\\.uk"
3988
+ },
3989
+ "prehideSelectors": [
3990
+ "#m-cookienotice"
3991
+ ],
3992
+ "detectCmp": [
3993
+ {
3994
+ "exists": "#m-cookienotice"
3995
+ }
3996
+ ],
3997
+ "detectPopup": [
3998
+ {
3999
+ "visible": "#m-cookienotice"
4000
+ }
4001
+ ],
4002
+ "optIn": [
4003
+ {
4004
+ "click": "#accept-cookies"
4005
+ }
4006
+ ],
4007
+ "optOut": [
4008
+ {
4009
+ "click": "#manage-cookies"
4010
+ },
4011
+ {
4012
+ "waitForThenClick": "#accept-selected"
4013
+ }
4014
+ ]
4015
+ },
3917
4016
  {
3918
4017
  "name": "samsung.com",
3919
4018
  "runContext": {
@@ -4924,6 +5023,10 @@
4924
5023
  "#usercentrics-root",
4925
5024
  "[data-testid=uc-container]"
4926
5025
  ]
5026
+ },
5027
+ {
5028
+ "waitForVisible": "#usercentrics-root",
5029
+ "timeout": 2000
4927
5030
  }
4928
5031
  ],
4929
5032
  "optIn": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Autoconsent",
4
- "version": "2023.12.19",
4
+ "version": "2023.12.27",
5
5
  "background": {
6
6
  "service_worker": "background.bundle.js"
7
7
  },
@@ -883,6 +883,44 @@
883
883
  }
884
884
  ]
885
885
  },
886
+ {
887
+ "name": "ciaopeople.it",
888
+ "prehideSelectors": [
889
+ "#cp-gdpr-choices"
890
+ ],
891
+ "detectCmp": [
892
+ {
893
+ "exists": "#cp-gdpr-choices"
894
+ }
895
+ ],
896
+ "detectPopup": [
897
+ {
898
+ "visible": "#cp-gdpr-choices"
899
+ }
900
+ ],
901
+ "optIn": [
902
+ {
903
+ "waitForThenClick": ".gdpr-btm__right > button:nth-child(2)"
904
+ }
905
+ ],
906
+ "optOut": [
907
+ {
908
+ "waitForThenClick": ".gdpr-top-content > button"
909
+ },
910
+ {
911
+ "waitFor": ".gdpr-top-back"
912
+ },
913
+ {
914
+ "waitForThenClick": ".gdpr-btm__right > button:nth-child(1)"
915
+ }
916
+ ],
917
+ "test": [
918
+ {
919
+ "visible": "#cp-gdpr-choices",
920
+ "check": "none"
921
+ }
922
+ ]
923
+ },
886
924
  {
887
925
  "vendorUrl": "https://www.civicuk.com/cookie-control/",
888
926
  "name": "civic-cookie-control",
@@ -1661,6 +1699,35 @@
1661
1699
  }
1662
1700
  ]
1663
1701
  },
1702
+ {
1703
+ "name": "csu-landtag-de",
1704
+ "runContext": {
1705
+ "urlPattern": "^https://(www|)?\\.csu-landtag\\.de"
1706
+ },
1707
+ "prehideSelectors": [
1708
+ "#cookie-disclaimer"
1709
+ ],
1710
+ "detectCmp": [
1711
+ {
1712
+ "exists": "#cookie-disclaimer"
1713
+ }
1714
+ ],
1715
+ "detectPopup": [
1716
+ {
1717
+ "visible": "#cookie-disclaimer"
1718
+ }
1719
+ ],
1720
+ "optIn": [
1721
+ {
1722
+ "click": "#cookieall"
1723
+ }
1724
+ ],
1725
+ "optOut": [
1726
+ {
1727
+ "click": "#cookiesel"
1728
+ }
1729
+ ]
1730
+ },
1664
1731
  {
1665
1732
  "name": "dailymotion-us",
1666
1733
  "cosmetic": true,
@@ -3914,6 +3981,38 @@
3914
3981
  }
3915
3982
  ]
3916
3983
  },
3984
+ {
3985
+ "name": "roofingmegastore.co.uk",
3986
+ "runContext": {
3987
+ "urlPattern": "^https://(www\\.)?roofingmegastore\\.co\\.uk"
3988
+ },
3989
+ "prehideSelectors": [
3990
+ "#m-cookienotice"
3991
+ ],
3992
+ "detectCmp": [
3993
+ {
3994
+ "exists": "#m-cookienotice"
3995
+ }
3996
+ ],
3997
+ "detectPopup": [
3998
+ {
3999
+ "visible": "#m-cookienotice"
4000
+ }
4001
+ ],
4002
+ "optIn": [
4003
+ {
4004
+ "click": "#accept-cookies"
4005
+ }
4006
+ ],
4007
+ "optOut": [
4008
+ {
4009
+ "click": "#manage-cookies"
4010
+ },
4011
+ {
4012
+ "waitForThenClick": "#accept-selected"
4013
+ }
4014
+ ]
4015
+ },
3917
4016
  {
3918
4017
  "name": "samsung.com",
3919
4018
  "runContext": {
@@ -4924,6 +5023,10 @@
4924
5023
  "#usercentrics-root",
4925
5024
  "[data-testid=uc-container]"
4926
5025
  ]
5026
+ },
5027
+ {
5028
+ "waitForVisible": "#usercentrics-root",
5029
+ "timeout": 2000
4927
5030
  }
4928
5031
  ],
4929
5032
  "optIn": [