File size: 319,082 Bytes
ecceb82 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 | [
{
"page_title": "[chicken stir fries] Results from Allrecipes",
"html_file": "hide_data_website/[chicken stir fries] Results from Allrecipes (1_30_2026 10:35:12 AM).html",
"annotations": [
{
"user_goal": "Find food that aligned with my dietary restrictions",
"hide_query": "Hide all food that contains avocado, broccoli and teriyaki sauce",
"difficulty": "Hard",
"hidden_elements": [
"#mntl-card-list-card--extendable_12-0",
"#mntl-card-list-card--extendable_8-0",
"#mntl-card-list-card--extendable_3-0",
"#mntl-card-list-card--extendable_2-0",
"#mntl-card-list-card--extendable_23-0"
],
"category": "HEALTH_SAFETY"
},
{
"user_goal": "Find food that aligned with my taste",
"hide_query": "Hide all food that contain pineapple, pepper and ginger.",
"difficulty": "Easy",
"hidden_elements": [
"a#mntl-card-list-card--extendable_12-0 > div.card__content",
"a#mntl-card-list-card--extendable_14-0 > div.card__content",
"#mntl-card-list-card--extendable_22-0",
"#mntl-card-list-card--extendable_10-0",
"#mntl-card-list-card--extendable_20-0"
],
"category": "HEALTH_SAFETY"
},
{
"user_goal": "Find food that fits my needs",
"hide_query": "Hide all food that contains broccoli and basil",
"difficulty": "Medium",
"hidden_elements": [
"#mntl-card-list-card--extendable_4-0",
"#mntl-card-list-card--extendable_2-0",
"#mntl-card-list-card--extendable_23-0"
],
"category": "TASTE_INTERESTS"
},
{
"user_goal": "Find food that matches my preferences",
"hide_query": "Hide all food that have coconut or cauliflower",
"difficulty": "Medium",
"hidden_elements": [
"#mntl-card-list-card--extendable_19-0",
"#mntl-card-list-card--extendable_22-0"
],
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "AI News & Artificial Intelligence | TechCrunch",
"html_file": "hide_data_website/AI News & Artificial Intelligence | TechCrunch (1_30_2026 9:36:17 AM).html",
"annotations": [
{
"user_goal": "I don't want to read about AI investment posts",
"hide_query": "Hide AI investment posts",
"hidden_elements": [
"main#wp--skip-link--target > div.wp-block-columns.is-layout-flex > div.wp-block-column.is-layout-flow > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow > li.wp-block-post.post-3088038 > div.wp-block-techcrunch-card.wp-block-null",
"main#wp--skip-link--target > div.wp-block-columns.is-layout-flex > div.wp-block-column.is-layout-flow > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow > li.wp-block-post.post-3087539 > div.wp-block-techcrunch-card.wp-block-null",
"main#wp--skip-link--target > div.wp-block-columns.is-layout-flex > div.wp-block-column.is-layout-flow > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow > li.wp-block-post.post-3087051 > div.wp-block-techcrunch-card.wp-block-null",
"main#wp--skip-link--target > div.wp-block-columns.is-layout-flex > div.wp-block-column.is-layout-flow > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow > li.wp-block-post.post-3087226 > div.wp-block-techcrunch-card.wp-block-null"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I don't like advertisement",
"hide_query": "Hide all advertisements for this page",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(2) > div.wp-block-template-part.wp-block-template-part--sidebar-variation-1-articles > div.wp-block-group.sidebar-variation-1 > div.wp-block-group.is-layout-flow:nth-child(1) > div.ad-unit.ad-unit--desktop",
"#google_ads_iframe_\\/23293943471\\/us\\/tc\\/ros\\/dt\\/us_tc_ros_dt_top_center_0",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(2) > div.wp-block-template-part.wp-block-template-part--sidebar-variation-1-articles > div.wp-block-group.sidebar-variation-1 > div.wp-block-group.is-layout-flow:nth-child(4) > div.ad-unit.ad-unit--desktop:nth-child(2)",
"#google_ads_iframe_\\/23293943471\\/us\\/tc\\/ros\\/dt\\/us_tc_ros_dt_btm_center_0"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I want to hide posts about Elon Musk",
"hide_query": "Hide all posts that mention Elon Musk",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087906:nth-child(5) > div.wp-block-techcrunch-card.wp-block-null"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about TechCrunch Disrupt",
"hide_query": "Hide all elements about Tech Crunch Disrupt",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(2) > div.wp-block-template-part.wp-block-template-part--sidebar-variation-1-articles > div.wp-block-group.sidebar-variation-1 > div.wp-block-techcrunch-event-cta.wp-block-block:nth-child(2) > div.rightrail-promo",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087018:nth-child(36) > div.wp-block-techcrunch-card.wp-block-null"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't like to see any news about Microsoft or Amazon",
"hide_query": "Hide all posts that relate to Microsoft or Amazon",
"difficulty": "Medium",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087908:nth-child(7) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3088038:nth-child(6) > div.wp-block-techcrunch-card.wp-block-null"
],
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't want to see any news about OpenAI or SpaceX",
"hide_query": "Hide all posts about OpenAI or SpaceX",
"difficulty": "Medium",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3086660:nth-child(41) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087814:nth-child(12) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087906:nth-child(5) > div.wp-block-techcrunch-card.wp-block-null"
],
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't like to see any news about Google or Startup",
"hide_query": "Hide any news about Google or Startup",
"difficulty": "Medium",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087102:nth-child(43) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3086608:nth-child(31) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3086514:nth-child(30) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087434:nth-child(18) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087840:nth-child(11) > div.wp-block-techcrunch-card.wp-block-null"
],
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I am very picky with my news",
"hide_query": "Hide all posts about Amazon, Tesla, SpaceX, Google and OpenAI",
"difficulty": "Hard",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087906:nth-child(5) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3088038:nth-child(6) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087477:nth-child(14) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087434:nth-child(18) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087539:nth-child(23) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3086660:nth-child(41) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087102:nth-child(43) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3086514:nth-child(30) > div.wp-block-techcrunch-card.wp-block-null"
],
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I am a picky news reader",
"hide_query": "Hide all posts about Google, Amazon, Microsoft and Elon Musk",
"difficulty": "Hard",
"hidden_elements": [
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087906:nth-child(5) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3088038:nth-child(6) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087908:nth-child(7) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087477:nth-child(14) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087434:nth-child(18) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087446:nth-child(24) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087539:nth-child(23) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3086514:nth-child(30) > div.wp-block-techcrunch-card.wp-block-null",
"#wp--skip-link--target > div.wp-block-columns.is-layout-flex:nth-child(4) > div.wp-block-column.is-layout-flow:nth-child(1) > div.wp-block-query.is-layout-flow > ul.wp-block-post-template.is-layout-flow:nth-child(2) > li.wp-block-post.post-3087102:nth-child(43) > div.wp-block-techcrunch-card.wp-block-null"
],
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Amazon.com : organic baby food",
"html_file": "hide_data_website/Amazon.com : organic baby food (1_30_2026 9:23:59 AM).html",
"annotations": [
{
"user_goal": "My baby does not like veggie food",
"hide_query": "Hide veggie products",
"hidden_elements": [
"#d2cc3fb4-22c7-4e3c-88ad-540740efe562 > div.sg-col-inner",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#ec484687-a57e-44b7-81e3-eb7247e9da5f > div.sg-col-inner",
"#\\31 d3611eb-826f-4293-a5b6-b9a0eecffbdf > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b17a2757-e051-4bfe-8014-4a57841aecc8 > div.sg-col-inner",
"#\\38 1489dad-d089-4285-bfee-db4998e16648 > div.sg-col-inner",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "My baby does not like meat products",
"hide_query": "Hide all products that contain meat",
"hidden_elements": [
"#\\39 333c49c-393c-42b7-b9db-866472850074 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't want expensive products",
"hide_query": "Hide posts that are more than 30$",
"hidden_elements": [
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#fb7ac1a9-7be1-4068-b719-99b628e13f37 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 8bab3d9-4721-48a4-92e3-f8ff5f439ff2 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\30 3dc8034-5388-4384-b911-a18171a9c24b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ef722e8f-a97c-47ee-824a-ca5e4b48d626 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ae9aed13-c54e-47f0-b11b-05a3845579cd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b17a2757-e051-4bfe-8014-4a57841aecc8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#da9f514c-2029-49fb-adb6-964cb1d299ea > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#b4906853-f367-4294-9ad8-d10ffba56779 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 4c0fef0-19f9-4531-8070-8f46d0a5bdda > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#\\39 333c49c-393c-42b7-b9db-866472850074 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#f2d5bfe7-83f9-467f-adda-b2952bb4b3d8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 18e3487-2229-4e87-86f0-609bfb6b2c93 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f3c10e7b-e1d5-402a-9837-c22f54a4e2c0 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want sponsored products",
"hide_query": "Hide all posts that are about sponsored products",
"hidden_elements": [
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 18e3487-2229-4e87-86f0-609bfb6b2c93 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f3c10e7b-e1d5-402a-9837-c22f54a4e2c0 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f2d5bfe7-83f9-467f-adda-b2952bb4b3d8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 504a7d3-d000-4bbe-81a5-e2c32f72da79 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#cb1c3bab-428e-457a-90c1-8697ac9e3bab > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 4c0fef0-19f9-4531-8070-8f46d0a5bdda > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#da9f514c-2029-49fb-adb6-964cb1d299ea > div.sg-col-inner",
"#b4906853-f367-4294-9ad8-d10ffba56779 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#bf94498f-f239-4751-8c3f-13797c916ec6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 3491060-ab45-42a4-8198-37d0b382fcf1 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 bc0ff90-f3a9-4c55-a6e8-cac03ee3dbef > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I don't want cheap baby products",
"hide_query": "Hide all entries that are less than 10$",
"hidden_elements": [
"#\\38 8d0700f-c021-4086-be58-20a07c75c2f9 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 3738062-e31f-460b-ac7f-235d25131e2b > div.sg-col-inner",
"#ddb00dc1-5422-480e-831a-f14bf02745a6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b1c855ee-76a1-4e1d-afda-6f25905bd361 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 cebf70b-553a-4192-b147-393ca0296bff > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#bdafe93a-f2af-45d5-9678-e782b6773b27 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4191273-355b-4bc7-85b8-d46c1ccbd1dd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 95b98d5-1c07-4b75-9d50-571906f364d4 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 2402549-b9da-452a-a70d-fa35df0edfba > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want serenity products",
"hide_query": "Hide all Serenity products",
"hidden_elements": [
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 18e3487-2229-4e87-86f0-609bfb6b2c93 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f3c10e7b-e1d5-402a-9837-c22f54a4e2c0 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\39 333c49c-393c-42b7-b9db-866472850074 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#da9f514c-2029-49fb-adb6-964cb1d299ea > div.sg-col-inner",
"#ec484687-a57e-44b7-81e3-eb7247e9da5f > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 e27d325-581d-451a-8be1-5a9e4d81fe6c > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ae9aed13-c54e-47f0-b11b-05a3845579cd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\30 3dc8034-5388-4384-b911-a18171a9c24b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8c51846-e1f5-4af9-9813-c07f472c1da7 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I am very selective with my baby's food",
"hide_query": "Hide all posts that are from Happy Baby or Happy Tot. Also, hide good that are less than 25$ and have less than 5K reviews and less than 4.5 stars.",
"difficulty": "Hard",
"hidden_elements": [
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 504a7d3-d000-4bbe-81a5-e2c32f72da79 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f4193192-79f4-46c0-8c71-383860e7f1ff > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\32 10cc7ec-08c6-40d8-82a8-bdd6d23a01c2 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#bf94498f-f239-4751-8c3f-13797c916ec6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 3491060-ab45-42a4-8198-37d0b382fcf1 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#c8070232-21fe-4d7e-bf46-05e35073206e > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 c311be4-be27-4eb4-8ce2-0a5b5fdbaecc > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 3738062-e31f-460b-ac7f-235d25131e2b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ebe7a93e-3f2a-4138-ad1c-eeccfaead4fd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 cebf70b-553a-4192-b147-393ca0296bff > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b9a13363-f61f-48d8-8011-ebf9f39f7c51 > div.sg-col-inner",
"#fec826ee-de33-42b8-9ca3-275be0b7f099 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#c10ed67d-7c87-4d08-bd49-de266778bd35 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#fb7ac1a9-7be1-4068-b719-99b628e13f37 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e1e320f7-a8a2-4339-b0ba-672d07b50f82 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#\\35 3468fc3-c024-4ca6-b21a-6ef3e784a642 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#c38304bd-bfe0-43f7-85c5-e79e97cd2816 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 6377672-500e-443c-b3b9-96a77d253e9f > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#a546b381-9990-4644-b126-016790ab7f10 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ec484687-a57e-44b7-81e3-eb7247e9da5f > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 bc0ff90-f3a9-4c55-a6e8-cac03ee3dbef > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 d3611eb-826f-4293-a5b6-b9a0eecffbdf > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e2f9afb8-c439-44e9-897d-fdfb0bc01ad1 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8d0700f-c021-4086-be58-20a07c75c2f9 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ae1a7c7e-2a32-4f1f-9ceb-c9a0b92b9220 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ae9aed13-c54e-47f0-b11b-05a3845579cd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b17a2757-e051-4bfe-8014-4a57841aecc8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ddb00dc1-5422-480e-831a-f14bf02745a6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b1c855ee-76a1-4e1d-afda-6f25905bd361 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#bdafe93a-f2af-45d5-9678-e782b6773b27 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 174c588-4c1b-4711-94a1-cf9ae3084f34 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ef722e8f-a97c-47ee-824a-ca5e4b48d626 > div.sg-col-inner",
"#\\30 3dc8034-5388-4384-b911-a18171a9c24b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e8678d48-f6e4-49d5-873e-97ed86ed9462 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 1489dad-d089-4285-bfee-db4998e16648 > div.sg-col-inner",
"#d4191273-355b-4bc7-85b8-d46c1ccbd1dd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 8bab3d9-4721-48a4-92e3-f8ff5f439ff2 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 95b98d5-1c07-4b75-9d50-571906f364d4 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 d4ed9f7-0370-4292-aecd-e2e74cd430ee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\37 baa77f1-f7a4-407e-9a5b-d251e9f45bee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4173a70-7a3f-4343-b0bc-21b763461471 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#a5301919-340d-4173-bb1f-5b5c226473ec > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b6290074-978b-4eba-bf6a-ce8f137c28d3 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d3dc4dd3-c949-48be-99eb-22b02fbd41ec > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8c51846-e1f5-4af9-9813-c07f472c1da7 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 0a6cae8-fbb9-4e0d-a6aa-986234ccd53d > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 1bfd159-8b9c-478a-8b21-9ee4767b5828 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 2402549-b9da-452a-a70d-fa35df0edfba > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#f3c10e7b-e1d5-402a-9837-c22f54a4e2c0 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f2d5bfe7-83f9-467f-adda-b2952bb4b3d8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container"
],
"category": "VALUE_QUALITY"
},
{
"user_goal": "I am selective with buying baby food",
"hide_query": "Hide all listings that are from HAPPYTOT or contain less than 2K reviews.",
"difficulty": "Medium",
"hidden_elements": [
"#\\32 10cc7ec-08c6-40d8-82a8-bdd6d23a01c2 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f2d5bfe7-83f9-467f-adda-b2952bb4b3d8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#b4906853-f367-4294-9ad8-d10ffba56779 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#da9f514c-2029-49fb-adb6-964cb1d299ea > div.sg-col-inner",
"#\\36 4c0fef0-19f9-4531-8070-8f46d0a5bdda > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#a546b381-9990-4644-b126-016790ab7f10 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#c38304bd-bfe0-43f7-85c5-e79e97cd2816 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#bf94498f-f239-4751-8c3f-13797c916ec6 > div.sg-col-inner",
"#\\31 d3611eb-826f-4293-a5b6-b9a0eecffbdf > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 bc0ff90-f3a9-4c55-a6e8-cac03ee3dbef > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 c311be4-be27-4eb4-8ce2-0a5b5fdbaecc > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8d0700f-c021-4086-be58-20a07c75c2f9 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 3738062-e31f-460b-ac7f-235d25131e2b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ddb00dc1-5422-480e-831a-f14bf02745a6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ebe7a93e-3f2a-4138-ad1c-eeccfaead4fd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 cebf70b-553a-4192-b147-393ca0296bff > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b1c855ee-76a1-4e1d-afda-6f25905bd361 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 174c588-4c1b-4711-94a1-cf9ae3084f34 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\30 3dc8034-5388-4384-b911-a18171a9c24b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 1489dad-d089-4285-bfee-db4998e16648 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e8678d48-f6e4-49d5-873e-97ed86ed9462 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#fec826ee-de33-42b8-9ca3-275be0b7f099 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4191273-355b-4bc7-85b8-d46c1ccbd1dd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#c10ed67d-7c87-4d08-bd49-de266778bd35 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\37 baa77f1-f7a4-407e-9a5b-d251e9f45bee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 d4ed9f7-0370-4292-aecd-e2e74cd430ee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4173a70-7a3f-4343-b0bc-21b763461471 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#a5301919-340d-4173-bb1f-5b5c226473ec > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b6290074-978b-4eba-bf6a-ce8f137c28d3 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d3dc4dd3-c949-48be-99eb-22b02fbd41ec > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8c51846-e1f5-4af9-9813-c07f472c1da7 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 0a6cae8-fbb9-4e0d-a6aa-986234ccd53d > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 2402549-b9da-452a-a70d-fa35df0edfba > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container"
],
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want not well known brand and low quality",
"hide_query": "Hide all listings that are less than 4.7 stars or from Earth's Best Organic or from Peter Rabbit",
"difficulty": "Hard",
"hidden_elements": [
"#e2f9afb8-c439-44e9-897d-fdfb0bc01ad1 > div.sg-col-inner",
"#\\38 8d0700f-c021-4086-be58-20a07c75c2f9 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 18e3487-2229-4e87-86f0-609bfb6b2c93 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f2d5bfe7-83f9-467f-adda-b2952bb4b3d8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\39 333c49c-393c-42b7-b9db-866472850074 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#da9f514c-2029-49fb-adb6-964cb1d299ea > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 4c0fef0-19f9-4531-8070-8f46d0a5bdda > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#c38304bd-bfe0-43f7-85c5-e79e97cd2816 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 6377672-500e-443c-b3b9-96a77d253e9f > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 bc0ff90-f3a9-4c55-a6e8-cac03ee3dbef > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 d3611eb-826f-4293-a5b6-b9a0eecffbdf > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 e27d325-581d-451a-8be1-5a9e4d81fe6c > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ddb00dc1-5422-480e-831a-f14bf02745a6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b17a2757-e051-4bfe-8014-4a57841aecc8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ebe7a93e-3f2a-4138-ad1c-eeccfaead4fd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b1c855ee-76a1-4e1d-afda-6f25905bd361 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ef722e8f-a97c-47ee-824a-ca5e4b48d626 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 174c588-4c1b-4711-94a1-cf9ae3084f34 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4191273-355b-4bc7-85b8-d46c1ccbd1dd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 2402549-b9da-452a-a70d-fa35df0edfba > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8c51846-e1f5-4af9-9813-c07f472c1da7 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 d4ed9f7-0370-4292-aecd-e2e74cd430ee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container"
],
"category": "VALUE_QUALITY"
},
{
"user_goal": "I only want to choose high quality products",
"hide_query": "Hide all posts that have less than 5K reviews or less than 4.7 stars.",
"difficulty": "Medium",
"hidden_elements": [
"#e9465b4f-41bc-4f75-bc25-dace4314999a > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f3c10e7b-e1d5-402a-9837-c22f54a4e2c0 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 18e3487-2229-4e87-86f0-609bfb6b2c93 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 504a7d3-d000-4bbe-81a5-e2c32f72da79 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#f2d5bfe7-83f9-467f-adda-b2952bb4b3d8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#e1e320f7-a8a2-4339-b0ba-672d07b50f82 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\39 333c49c-393c-42b7-b9db-866472850074 > div.sg-col-inner",
"#f4193192-79f4-46c0-8c71-383860e7f1ff > div.sg-col-inner",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-inline-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#\\32 10cc7ec-08c6-40d8-82a8-bdd6d23a01c2 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b4906853-f367-4294-9ad8-d10ffba56779 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#da9f514c-2029-49fb-adb6-964cb1d299ea > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 4c0fef0-19f9-4531-8070-8f46d0a5bdda > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#c38304bd-bfe0-43f7-85c5-e79e97cd2816 > div.sg-col-inner",
"#a546b381-9990-4644-b126-016790ab7f10 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 6377672-500e-443c-b3b9-96a77d253e9f > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#search > div.s-desktop-width-max.s-desktop-content:nth-child(2) > div.sg-col-20-of-24.s-matching-dir:nth-child(1) > div.sg-col-inner > span.rush-component.s-latency-cf-section:nth-child(2) > div.s-main-slot.s-result-list:nth-child(1) > div.sg-col-20-of-24.s-result-item:nth-child(22) > div.sg-col-inner",
"#ec484687-a57e-44b7-81e3-eb7247e9da5f > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#bf94498f-f239-4751-8c3f-13797c916ec6 > div.sg-col-inner",
"#\\31 3491060-ab45-42a4-8198-37d0b382fcf1 > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 bc0ff90-f3a9-4c55-a6e8-cac03ee3dbef > div.sg-col-inner > div.s-widget-container.s-spacing-small > div.rush-component.s-expand-height > div.rush-component.s-featured-result-item > span.a-declarative > div.puis-card-container.s-card-container",
"#c8070232-21fe-4d7e-bf46-05e35073206e > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\31 d3611eb-826f-4293-a5b6-b9a0eecffbdf > div.sg-col-inner",
"#e2f9afb8-c439-44e9-897d-fdfb0bc01ad1 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 c311be4-be27-4eb4-8ce2-0a5b5fdbaecc > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8d0700f-c021-4086-be58-20a07c75c2f9 > div.sg-col-inner",
"#\\34 3738062-e31f-460b-ac7f-235d25131e2b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ae1a7c7e-2a32-4f1f-9ceb-c9a0b92b9220 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 e27d325-581d-451a-8be1-5a9e4d81fe6c > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b17a2757-e051-4bfe-8014-4a57841aecc8 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ae9aed13-c54e-47f0-b11b-05a3845579cd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ddb00dc1-5422-480e-831a-f14bf02745a6 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 cebf70b-553a-4192-b147-393ca0296bff > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ebe7a93e-3f2a-4138-ad1c-eeccfaead4fd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b1c855ee-76a1-4e1d-afda-6f25905bd361 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#ef722e8f-a97c-47ee-824a-ca5e4b48d626 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 174c588-4c1b-4711-94a1-cf9ae3084f34 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#bdafe93a-f2af-45d5-9678-e782b6773b27 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 1489dad-d089-4285-bfee-db4998e16648 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\30 3dc8034-5388-4384-b911-a18171a9c24b > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#e8678d48-f6e4-49d5-873e-97ed86ed9462 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4191273-355b-4bc7-85b8-d46c1ccbd1dd > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 8bab3d9-4721-48a4-92e3-f8ff5f439ff2 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\34 95b98d5-1c07-4b75-9d50-571906f364d4 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\37 baa77f1-f7a4-407e-9a5b-d251e9f45bee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#c10ed67d-7c87-4d08-bd49-de266778bd35 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\36 d4ed9f7-0370-4292-aecd-e2e74cd430ee > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d4173a70-7a3f-4343-b0bc-21b763461471 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#a5301919-340d-4173-bb1f-5b5c226473ec > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#b6290074-978b-4eba-bf6a-ce8f137c28d3 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#fb7ac1a9-7be1-4068-b719-99b628e13f37 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#d3dc4dd3-c949-48be-99eb-22b02fbd41ec > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\38 8c51846-e1f5-4af9-9813-c07f472c1da7 > div.sg-col-inner",
"#\\34 0a6cae8-fbb9-4e0d-a6aa-986234ccd53d > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 1bfd159-8b9c-478a-8b21-9ee4767b5828 > div.sg-col-inner > div.s-widget-container.s-spacing-small > span.a-declarative > div.puis-card-container.s-card-container",
"#\\33 2402549-b9da-452a-a70d-fa35df0edfba > div.sg-col-inner",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(1) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(2) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container",
"#loom-desktop-bottom-slot_featuredasins-carousel > div.a-row.a-carousel-controls > div.a-carousel-row-inner > div.a-carousel-col.a-carousel-center > div.a-carousel-viewport > ol.a-carousel > li.a-carousel-card:nth-child(3) > div.sg-col-4-of-24.sg-col-4-of-12 > div.sg-col-inner > div.rush-component.s-expand-height > span.a-declarative > div.puis-card-container.s-card-container"
],
"category": "VALUE_QUALITY"
}
]
},
{
"page_title": "Asian Groceries in | Get Delivery: Weee! Asian Market",
"html_file": "hide_data_website/Asian Groceries in | Get Delivery: Weee! Asian Market (1_30_2026 9:47:19 AM).html",
"annotations": [
{
"user_goal": "I am allergic to fish",
"hide_query": "Hide fish products",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(2) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(9) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(15) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(14) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(13) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(17) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(18) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(20) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(22) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(34) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(39) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(37) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(43) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(48) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(47) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(53) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(52) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(54) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(60) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(59) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(56) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(5) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(10) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(24) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(36) > a.relative.block:nth-child(1)"
],
"difficulty": "Easy",
"category": "HEALTH_SAFETY"
},
{
"user_goal": "I am allergic to crab",
"hide_query": "Hide all food that is made with crab",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(1) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(6) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(21) > a.relative.block:nth-child(1)"
],
"difficulty": "Easy",
"category": "HEALTH_SAFETY"
},
{
"user_goal": "I am allergic to crab and mussel",
"hide_query": "Hide all listings that are about crab or mussel.",
"difficulty": "Medium",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(8) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(6) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(1) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(11) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(21) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(50) > a.relative.block:nth-child(1)"
],
"category": "HEALTH_SAFETY"
},
{
"user_goal": "I am allergic to squid and pineapple",
"hide_query": "Hide all food that contains squid or pienapple",
"difficulty": "Medium",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(38) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(58) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(11) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(27) > a.relative.block:nth-child(1)"
],
"category": "HEALTH_SAFETY"
},
{
"user_goal": "I am allergic to shrimp, crab and tuna",
"hide_query": "Hide all listings that contain shrimp or crab or tuna",
"difficulty": "Hard",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(43) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(45) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(1) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(6) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(7) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(11) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(16) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(21) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(25) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(31) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(33) > a.relative.block:nth-child(1)"
],
"category": "HEALTH_SAFETY"
},
{
"user_goal": "I am allergic to sea bass, cuttlefish and salmon",
"hide_query": "Hide all food that contain sea bass, cuttlefish and salmon",
"difficulty": "Hard",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(24) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(47) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(53) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(54) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(11) > a.relative.block:nth-child(1)"
],
"category": "HEALTH_SAFETY"
},
{
"user_goal": "I am allergic to crab, shrimp, salmon and oyster",
"hide_query": "Hide all posts that contain crab, shrimp, salmon and oyster",
"difficulty": "Hard",
"hidden_elements": [
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(1) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(7) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(11) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(16) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(24) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(21) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(25) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(45) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(47) > a.relative.block:nth-child(1)",
"#pdp-in-page-container > div.main-content-wrapper > div.flex.flex-col:nth-child(1) > div.pt-6.relative:nth-child(3) > div.flex.flex-col:nth-child(1) > section.mb-4.grid:nth-child(2) > div.relative.block:nth-child(55) > a.relative.block:nth-child(1)"
],
"category": "HEALTH_SAFETY"
}
]
},
{
"page_title": "AskCulinary",
"html_file": "hide_data_website/AskCulinary (1_30_2026 9:14:20 AM).html",
"annotations": [
{
"user_goal": "I don't want advertisement and promotes",
"hide_query": "Hide ads/promotes",
"hidden_elements": [
"shreddit-ad-post#t3_1pk34nh > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1qjv18y > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1pt1yfi > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1nvtm1a > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1q7us8a > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1pj43a0 > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1q4xe0w > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1pobv58 > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1ndvffu > shreddit-dynamic-ad-link.absolute.inset-0",
"shreddit-ad-post#t3_1pinslp > shreddit-dynamic-ad-link.absolute.inset-0"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I am allergic to sake",
"hide_query": "Hide posts about food that contains sake",
"hidden_elements": [
"#t3_1qnytzz > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "HEALTH_SAFETY"
}
]
},
{
"page_title": "Coursera | Online Courses From Top Universities. Join for Free",
"html_file": "hide_data_website/Coursera | Online Courses From Top Universities. Join for Free (1_30_2026 10:09:50 AM).html",
"annotations": [
{
"user_goal": "I don't want courses from IBM",
"hide_query": "Hide all courses from IBM",
"hidden_elements": [
"#searchResults > div:nth-child(1) > div > ul.cds-9.css-5t8l4v:nth-child(1) > li.cds-9.css-0:nth-child(3) > div.css-1whl2ol",
"#searchResults > div:nth-child(1) > div > ul.cds-9.css-5t8l4v:nth-child(1) > li.cds-9.css-0:nth-child(2) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(9) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(12) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(2) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(9) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(1) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(5) > div.css-1whl2ol",
"#searchResults > div:nth-child(1) > div > ul.cds-9.css-5t8l4v:nth-child(3) > li.cds-9.css-0:nth-child(2) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(2) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(6) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(3) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(5) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(5) > div.css-1whl2ol"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't want courses under 4.5 start",
"hide_query": "Hide all courses that are under 4.5 star",
"hidden_elements": [
"#searchResults > div:nth-child(3) > div:nth-child(1) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(2) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(1) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(7) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(2) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(4) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(2) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(7) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(3) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(7) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(3) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(10) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(1) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(2) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(8) > div.css-1whl2ol",
"#searchResults > div:nth-child(3) > div:nth-child(4) > ul.cds-9.css-5t8l4v > li.cds-9.css-0:nth-child(11) > div.css-1whl2ol"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
}
]
},
{
"page_title": "Feed | LinkedIn",
"html_file": "hide_data_website/Feed | LinkedIn (1_30_2026 9:32:43 AM).html",
"annotations": [
{
"user_goal": "I don't want to read about conference acceptance",
"hide_query": "Hide conference acceptance notifitcations",
"hidden_elements": [
"div#ember94 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container",
"div#ember800 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container",
"div#ember936 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't want to see advertisements on my page",
"hide_query": "Hide advertisements",
"hidden_elements": [
"div#ember126 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container",
"li#ember50",
"div#ember287 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container",
"div#ember682 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container",
"div#ember770 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container",
"div#ember847 > div > div.feed-shared-update-v2__control-menu-container.display-flex > div.fie-impression-container"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
}
]
},
{
"page_title": "Home - Netflix",
"html_file": "hide_data_website/Home - Netflix (1_30_2026 9:44:30 AM).html",
"annotations": [
{
"user_goal": "I am not a fan of horror movies",
"hide_query": "Hide horror movies",
"hidden_elements": [
"div#main-view > div.lolomo.is-fullbleed > div.lolomoRow.lolomoRow_title_card > h2.rowHeader.default-ltr-iqcdef-cache-0",
"div#row-31 > div.ptrack-container > div.rowContent.slider-hover-trigger-layer > div.slider > div.sliderMask.showPeek"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't like movies about Spiderman and Thunderman",
"hide_query": "Hide all movies about spiderman and thunderman",
"hidden_elements": [
"#title-card-6-0 > div.ptrack-content:nth-child(1) > a.slider-refocus > div.boxart-container.boxart-rounded > img.boxart-image.boxart-image-in-padded-container:nth-child(1)",
"#title-card-3-0 > div.ptrack-content:nth-child(1) > a.slider-refocus > div.boxart-container.boxart-rounded > img.boxart-image.boxart-image-in-padded-container:nth-child(1)",
"#title-card-1-11 > div.ptrack-content:nth-child(1) > a.slider-refocus > div.boxart-container.boxart-rounded > img.boxart-image.boxart-image-in-padded-container:nth-child(1)"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Home _ X",
"html_file": "hide_data_website/Home _ X (1_30_2026 9:31:05 AM).html",
"annotations": [
{
"user_goal": "Protect my feed from scammers",
"hide_query": "Hide posts about scammers",
"hidden_elements": [
"div#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425 > main.css-175oi2r.r-16y2uox > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi > div.css-175oi2r > div.css-175oi2r.r-f8sm7e > section.css-175oi2r > div.css-175oi2r > div > div.css-175oi2r > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > div.css-175oi2r > article.css-175oi2r.r-18u37iz"
],
"difficulty": "Easy",
"category": "TRUST_RISK"
},
{
"user_goal": "I don't want advertisements on my posts",
"hide_query": "Hide advertisements",
"hidden_elements": [
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(2) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > div.css-175oi2r > article.css-175oi2r.r-18u37iz:nth-child(5) > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(8) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > div.css-175oi2r > article.css-175oi2r.r-18u37iz:nth-child(5) > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(25) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > div.css-175oi2r > article.css-175oi2r.r-18u37iz:nth-child(5) > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I don't want to see news about Clawdbot",
"hide_query": "Hide posts about Clawdbot",
"hidden_elements": [
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(70) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > article.css-175oi2r.r-18u37iz > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(75) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > article.css-175oi2r.r-18u37iz > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(56) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > article.css-175oi2r.r-18u37iz > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(22) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > article.css-175oi2r.r-18u37iz > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(9) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > article.css-175oi2r.r-18u37iz > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-kemksi:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(1) > div.css-175oi2r.r-1igl3o0 > div.css-175oi2r > article.css-175oi2r.r-18u37iz > div.css-175oi2r.r-eqz5dr > div.css-175oi2r.r-16y2uox > div.css-175oi2r.r-18u37iz:nth-child(2)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Machine Learning",
"html_file": "hide_data_website/Machine Learning (1_30_2026 9:13:33 AM).html",
"annotations": [
{
"user_goal": "I don't want to read about ICML",
"hide_query": "Hide posts about ICML",
"hidden_elements": [
"#t3_1qlf3ba > a.absolute.inset-0:nth-child(1)",
"#t3_1qq3rzb > a.absolute.inset-0:nth-child(1)",
"#t3_1qmhyin > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I want high quality posts in the past 24 hours",
"hide_query": "Hide all posts that are older than 24 hours ago or contain less than 50 upvotes or less than 5 replies",
"difficulty": "Hard",
"hidden_elements": [
"#t3_1qqxzce > a.absolute.inset-0:nth-child(1)",
"#t3_1qjgjro > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qno68x > a.absolute.inset-0:nth-child(1)",
"#t3_1qmhyin > a.absolute.inset-0:nth-child(1)",
"#t3_1qr56dv > a.absolute.inset-0:nth-child(1)",
"#t3_1qr5cbw > a.absolute.inset-0:nth-child(1)",
"#t3_1qr1sl9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qjv18y > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qm32o6 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqpgkm > a.absolute.inset-0:nth-child(1)",
"#t3_1qmi3oe > a.absolute.inset-0:nth-child(1)",
"#t3_1qr4wpg > a.absolute.inset-0:nth-child(1)",
"#t3_1qktalg > a.absolute.inset-0:nth-child(1)",
"#t3_1qqfl8x > a.absolute.inset-0:nth-child(1)",
"#t3_1pk34qa > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qlhs05 > a.absolute.inset-0:nth-child(1)",
"#t3_1qq4sn4 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqhqi2 > a.absolute.inset-0:nth-child(1)",
"#t3_1qp6s3c > a.absolute.inset-0:nth-child(1)",
"#t3_1qq0sly > a.absolute.inset-0:nth-child(1)",
"#t3_1qq3rzb > a.absolute.inset-0:nth-child(1)",
"#t3_1qq0xcl > a.absolute.inset-0:nth-child(1)",
"#t3_1qq4lnc > a.absolute.inset-0:nth-child(1)",
"#t3_1qqxstn > a.absolute.inset-0:nth-child(1)",
"#t3_1qr7dfx > a.absolute.inset-0:nth-child(1)",
"#t3_1qpc4ap > a.absolute.inset-0:nth-child(1)",
"#t3_1qltk8x > a.absolute.inset-0:nth-child(1)",
"#t3_1qlf3ba > a.absolute.inset-0:nth-child(1)",
"#t3_1qnbipe > a.absolute.inset-0:nth-child(1)",
"#t3_1qo6sai > a.absolute.inset-0:nth-child(1)",
"#t3_1qpe5vq > a.absolute.inset-0:nth-child(1)"
],
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I want high quality posts in the past 2 days",
"hide_query": "Hide all posts that are more than 2 days ago or contain less than 100 upvotes or contain less than 20 replies",
"difficulty": "Hard",
"hidden_elements": [
"#t3_1qpc4ap > a.absolute.inset-0:nth-child(1)",
"#t3_1qltk8x > a.absolute.inset-0:nth-child(1)",
"#t3_1qlf3ba > a.absolute.inset-0:nth-child(1)",
"#t3_1qnbipe > a.absolute.inset-0:nth-child(1)",
"#t3_1qpe5vq > a.absolute.inset-0:nth-child(1)",
"#t3_1qo6sai > a.absolute.inset-0:nth-child(1)",
"#t3_1pt1yfi > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qq0xcl > a.absolute.inset-0:nth-child(1)",
"#t3_1qq3rzb > a.absolute.inset-0:nth-child(1)",
"#t3_1qq0sly > a.absolute.inset-0:nth-child(1)",
"#t3_1qqhqi2 > a.absolute.inset-0:nth-child(1)",
"#t3_1qq4sn4 > a.absolute.inset-0:nth-child(1)",
"#t3_1qlhs05 > a.absolute.inset-0:nth-child(1)",
"#t3_1pk34qa > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqfl8x > a.absolute.inset-0:nth-child(1)",
"#t3_1qktalg > a.absolute.inset-0:nth-child(1)",
"#t3_1qr4wpg > a.absolute.inset-0:nth-child(1)",
"#t3_1qq4lnc > a.absolute.inset-0:nth-child(1)",
"#t3_1qmi3oe > a.absolute.inset-0:nth-child(1)",
"#t3_1qqpgkm > a.absolute.inset-0:nth-child(1)",
"#t3_1qm32o6 > a.absolute.inset-0:nth-child(1)",
"#t3_1qjv18y > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qr1sl9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qr5cbw > a.absolute.inset-0:nth-child(1)",
"#t3_1qr56dv > a.absolute.inset-0:nth-child(1)",
"#t3_1qmhyin > a.absolute.inset-0:nth-child(1)",
"#t3_1qqxstn > a.absolute.inset-0:nth-child(1)",
"#t3_1qr7dfx > a.absolute.inset-0:nth-child(1)",
"#t3_1qno68x > a.absolute.inset-0:nth-child(1)",
"#t3_1qjgjro > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqxzce > a.absolute.inset-0:nth-child(1)"
],
"category": "ATTENTION_RECENCY"
}
]
},
{
"page_title": "Optimal Transport: Using 18th Century Math To Accelerate 21st Century Science - YouTube",
"html_file": "hide_data_website/Optimal Transport: Using 18th Century Math To Accelerate 21st Century Science - YouTube (1_30_2026 9:12:10 AM).html",
"annotations": [
{
"user_goal": "Just want to watch optimal transport video",
"hide_query": "Hide videos that are not related to Optimal Transport",
"hidden_elements": [
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(6) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(6) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(3) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(3) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(2) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(2) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(1) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(1) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(7) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(9) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(9) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(10) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(10) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(11) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(7) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(7) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2) > yt-content-metadata-view-model.yt-content-metadata-view-model",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(11) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(11) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2) > yt-content-metadata-view-model.yt-content-metadata-view-model",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(12) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(12) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(12) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(13) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(13) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(14) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(14) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(18) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(18) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(20) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(20) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(24) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(24) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(24) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(25) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(25) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(26) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(26) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(27) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(27) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(27) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(28) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(28) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(28) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(30) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(30) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(30) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(32) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(32) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(34) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(34) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(34) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(35) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(35) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(38) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(38) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(44) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(44) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(44) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(45) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(45) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(46) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(46) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(46) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(47) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(47) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(48) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(48) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(49) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(49) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(51) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(51) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(51) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(53) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(53) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(53) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(56) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(56) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(56) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(57) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(57) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(57) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(58) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(58) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(58) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(59) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(59) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(60) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(60) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(60) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(63) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(63) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(63) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(65) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(65) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(66) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(66) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(66) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(68) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(68) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(69) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(69) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(70) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(70) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(72) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(72) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(73) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(73) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(74) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(76) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(77) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(79) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(80) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(80) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(79) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(79) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(77) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(77) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(76) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(76) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(74) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(74) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > div.yt-lockup-metadata-view-model__metadata:nth-child(2)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care for Vietnamese music",
"hide_query": "Hide all videos about Vietnamese music",
"hidden_elements": [
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(48) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(48) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3) > yt-lockup-metadata-view-model.yt-lockup-metadata-view-model.yt-lockup-metadata-view-model--horizontal > div.yt-lockup-metadata-view-model__text-container:nth-child(2) > h3.yt-lockup-metadata-view-model__heading-reset:nth-child(1) > a.yt-lockup-metadata-view-model__title > span.yt-core-attributed-string.yt-core-attributed-string--white-space-pre-wrap",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(48) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(35) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1) > img.ytCoreImageHost.ytCoreImageFillParentHeight",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(35) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(72) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(73) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(72) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(73) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(10) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1) > img.ytCoreImageHost.ytCoreImageFillParentHeight",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(10) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(20) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1) > img.ytCoreImageHost.ytCoreImageFillParentHeight",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(20) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(25) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > a.yt-lockup-view-model__content-image:nth-child(2) > yt-thumbnail-view-model.ytThumbnailViewModelHost.ytThumbnailViewModelAspectRatio16By9 > div.ytThumbnailViewModelImage:nth-child(1) > img.ytCoreImageHost.ytCoreImageFillParentHeight",
"#contents > yt-lockup-view-model.ytd-item-section-renderer.lockup:nth-child(25) > div.yt-lockup-view-model.yt-lockup-view-model--horizontal > div.yt-lockup-view-model__metadata:nth-child(3)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Personal Finance",
"html_file": "hide_data_website/Personal_Finance.html",
"annotations": [
{
"user_goal": "Find recent posts that are from 3 days ago or less",
"hide_query": "Hide post that are more than 4 days ago",
"hidden_elements": [
"#t3_1q56bck > a.absolute.inset-0:nth-child(1)",
"#t3_1q99d5y > a.absolute.inset-0:nth-child(1)",
"#t3_1qlii53 > a.absolute.inset-0:nth-child(1)",
"#t3_1qmlmw4 > a.absolute.inset-0:nth-child(1)",
"#t3_1q4rxt7 > a.absolute.inset-0:nth-child(1)",
"#t3_1qjftkr > a.absolute.inset-0:nth-child(1)",
"#t3_1qmpc3n > a.absolute.inset-0:nth-child(1)",
"#t3_1qcxkg9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qjihev > a.absolute.inset-0:nth-child(1)",
"#t3_1q0z95o > a.absolute.inset-0:nth-child(1)",
"#t3_1ql34c8 > a.absolute.inset-0:nth-child(1)",
"#t3_1ql3klm > a.absolute.inset-0:nth-child(1)",
"#t3_1q61g5o > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I only want to read recent post within a day",
"hide_query": "Hide posts that are older than 24 hours",
"hidden_elements": [
"#t3_1qhz7qj > a.absolute.inset-0:nth-child(1)",
"#t3_1qo94x8 > a.absolute.inset-0:nth-child(1)",
"#t3_1qo5i0e > a.absolute.inset-0:nth-child(1)",
"#t3_1q61g5o > a.absolute.inset-0:nth-child(1)",
"#t3_1qp4jt6 > a.absolute.inset-0:nth-child(1)",
"#t3_1qo6qgz > a.absolute.inset-0:nth-child(1)",
"#t3_1qplqgz > a.absolute.inset-0:nth-child(1)",
"#t3_1qbuzzy > a.absolute.inset-0:nth-child(1)",
"#t3_1q00z4b > a.absolute.inset-0:nth-child(1)",
"#t3_1ql3klm > a.absolute.inset-0:nth-child(1)",
"#t3_1ql34c8 > a.absolute.inset-0:nth-child(1)",
"#t3_1q0z95o > a.absolute.inset-0:nth-child(1)",
"#t3_1qjihev > a.absolute.inset-0:nth-child(1)",
"#t3_1qcxkg9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qmpc3n > a.absolute.inset-0:nth-child(1)",
"#t3_1qjftkr > a.absolute.inset-0:nth-child(1)",
"#t3_1qbt6xk > a.absolute.inset-0:nth-child(1)",
"#t3_1q4rxt7 > a.absolute.inset-0:nth-child(1)",
"#t3_1qmlmw4 > a.absolute.inset-0:nth-child(1)",
"#t3_1q99d5y > a.absolute.inset-0:nth-child(1)",
"#t3_1qnxmy8 > a.absolute.inset-0:nth-child(1)",
"#t3_1q56bck > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I want posts with more replies",
"hide_query": "Hide posts that have less than 20 replies",
"hidden_elements": [
"#t3_1kswqiy > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qr07a7 > a.absolute.inset-0:nth-child(1)",
"#t3_1qr75dl > a.absolute.inset-0:nth-child(1)",
"#t3_1qr83ac > a.absolute.inset-0:nth-child(1)",
"#t3_1qr83u2 > a.absolute.inset-0:nth-child(1)",
"#t3_1qr85k3 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqsh3i > a.absolute.inset-0:nth-child(1)",
"#t3_1qr750w > a.absolute.inset-0:nth-child(1)",
"#t3_1qnj9va > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqvj0i > a.absolute.inset-0:nth-child(1)",
"#t3_1qr6zb0 > a.absolute.inset-0:nth-child(1)",
"#t3_1o6gmbf > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qquiz9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqy12m",
"#t3_1qqoq9q > a.absolute.inset-0:nth-child(1)",
"#t3_1qd131m > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqv4vc > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I want posts with a lot of upvotes",
"hide_query": "Hide posts that are less than 1K upvotes",
"hidden_elements": [
"#t3_1p5yev9 > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqtnf9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qr85k3 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqlfg5 > a.absolute.inset-0:nth-child(1)",
"#t3_1qnvp0w > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qr3nom > a.absolute.inset-0:nth-child(1)",
"#t3_1qqcank > a.absolute.inset-0:nth-child(1)",
"#t3_1qr83u2 > a.absolute.inset-0:nth-child(1)",
"#t3_1qie46a > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqmsff > a.absolute.inset-0:nth-child(1)",
"#t3_1qlii53 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqxlko > a.absolute.inset-0:nth-child(1)",
"#t3_1qmlmw4 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqk610 > a.absolute.inset-0:nth-child(1)",
"#t3_1pzvgmf > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qr83ac > a.absolute.inset-0:nth-child(1)",
"#t3_1qqpxiz > a.absolute.inset-0:nth-child(1)",
"#t3_1qr75dl > a.absolute.inset-0:nth-child(1)",
"#t3_1qr07a7 > a.absolute.inset-0:nth-child(1)",
"#t3_1kswqiy > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqvrb4 > a.absolute.inset-0:nth-child(1)",
"#t3_1qmpc3n",
"#t3_1qehm3t > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqproj > a.absolute.inset-0:nth-child(1)",
"#t3_1qqsh3i",
"#t3_1qqca0n > a.absolute.inset-0:nth-child(1)",
"#t3_1qr750w > a.absolute.inset-0:nth-child(1)",
"#t3_1qnj9va > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qr2inb > a.absolute.inset-0:nth-child(1)",
"#t3_1ql34c8 > a.absolute.inset-0:nth-child(1)",
"#t3_1ql3klm > a.absolute.inset-0:nth-child(1)",
"#t3_1qr6zb0 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqvj0i > a.absolute.inset-0:nth-child(1)",
"#t3_1o6gmbf > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqmpxv > a.absolute.inset-0:nth-child(1)",
"#t3_1qquiz9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqy12m > a.absolute.inset-0:nth-child(1)",
"#t3_1qqoq9q > a.absolute.inset-0:nth-child(1)",
"#t3_1qplqgz > a.absolute.inset-0:nth-child(1)",
"#t3_1qd131m > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqv4vc > a.absolute.inset-0:nth-child(1)",
"#t3_1qo6qgz > a.absolute.inset-0:nth-child(1)",
"#t3_1qp4jt6 > a.absolute.inset-0:nth-child(1)",
"#t3_1q61g5o > a.absolute.inset-0:nth-child(1)",
"#t3_1qo5i0e > a.absolute.inset-0:nth-child(1)",
"#t3_1qo94x8 > a.absolute.inset-0:nth-child(1)",
"#t3_1qhz7qj > a.absolute.inset-0:nth-child(1)",
"#t3_1n9fj3x > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqeqso > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I want high quality posts in the past 4 days",
"hide_query": "Hide any posts that are older than 4 days or contain less than 100 upvotes or contain less than 50 replies",
"difficulty": "Hard",
"hidden_elements": [
"#t3_1p5yev9 > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1q2aweq > a.absolute.inset-0:nth-child(1)",
"#t3_1qr85k3 > a.absolute.inset-0:nth-child(1)",
"#t3_1qnvp0w > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1q56bck > a.absolute.inset-0:nth-child(1)",
"#t3_1qr3nom > a.absolute.inset-0:nth-child(1)",
"#t3_1qr83u2 > a.absolute.inset-0:nth-child(1)",
"#t3_1qie46a > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qlii53 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqxlko > a.absolute.inset-0:nth-child(1)",
"#t3_1qmlmw4 > a.absolute.inset-0:nth-child(1)",
"#t3_1pzvgmf > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1q4rxt7 > a.absolute.inset-0:nth-child(1)",
"#t3_1qr83ac > a.absolute.inset-0:nth-child(1)",
"#t3_1qqpxiz > a.absolute.inset-0:nth-child(1)",
"#t3_1qr75dl > a.absolute.inset-0:nth-child(1)",
"#t3_1qr07a7 > a.absolute.inset-0:nth-child(1)",
"#t3_1kswqiy > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqvrb4 > a.absolute.inset-0:nth-child(1)",
"#t3_1qbt6xk > a.absolute.inset-0:nth-child(1)",
"#t3_1qjftkr > a.absolute.inset-0:nth-child(1)",
"#t3_1qmpc3n > a.absolute.inset-0:nth-child(1)",
"#t3_1qcxkg9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qehm3t > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqproj > a.absolute.inset-0:nth-child(1)",
"#t3_1qjihev > a.absolute.inset-0:nth-child(1)",
"#t3_1qqsh3i > a.absolute.inset-0:nth-child(1)",
"#t3_1q0z95o > a.absolute.inset-0:nth-child(1)",
"#t3_1qr750w > a.absolute.inset-0:nth-child(1)",
"#t3_1qnj9va > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qr2inb > a.absolute.inset-0:nth-child(1)",
"#t3_1ql34c8 > a.absolute.inset-0:nth-child(1)",
"#t3_1ql3klm > a.absolute.inset-0:nth-child(1)",
"#t3_1q00z4b > a.absolute.inset-0:nth-child(1)",
"#t3_1qr6zb0 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqvj0i > a.absolute.inset-0:nth-child(1)",
"#t3_1o6gmbf > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qquiz9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qqmpxv > a.absolute.inset-0:nth-child(1)",
"#t3_1qbuzzy > a.absolute.inset-0:nth-child(1)",
"#t3_1qqy12m > a.absolute.inset-0:nth-child(1)",
"#t3_1qqoq9q > a.absolute.inset-0:nth-child(1)",
"#t3_1qd131m > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qqv4vc > a.absolute.inset-0:nth-child(1)",
"#t3_1q61g5o > a.absolute.inset-0:nth-child(1)",
"#t3_1n9fj3x > shreddit-dynamic-ad-link.absolute.inset-0:nth-child(1)",
"#t3_1qhz7qj > a.absolute.inset-0:nth-child(1)"
],
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I don't care about credit/debit",
"hide_query": "Hide posts about credit",
"category": "TASTE_INTERESTS",
"difficulty": "Easy",
"hidden_elements": [
"#t3_1qqcank > a.absolute.inset-0:nth-child(1)",
"#t3_1qqmsff > a.absolute.inset-0:nth-child(1)",
"#t3_1qcxkg9 > a.absolute.inset-0:nth-child(1)",
"#t3_1qhz7qj > a.absolute.inset-0:nth-child(1)"
]
}
]
},
{
"page_title": "Results for "bookshelf" in all - Instructables",
"html_file": "hide_data_website/Results for "bookshelf" in all - Instructables (1_30_2026 10:33:17 AM).html",
"annotations": [
{
"user_goal": "I want posts that garners more a lot of likes",
"hide_query": "Hide posts less than 100 likes",
"hidden_elements": [
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(1)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(2)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(5)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(8)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(12)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(11)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(15)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(23)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(27)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(25)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(28)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(29)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(30)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(31)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(32)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(36)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(39)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(38)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(44)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(49)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(56)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(55)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(57)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I want posts that get a lot of views",
"hide_query": "Hide all posts that are less than 10K views",
"hidden_elements": [
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(1)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(2)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(3)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(5)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(11)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(12)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(15)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(16)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(19)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(23)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(27)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(25)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(29)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(28)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(30)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(32)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(36)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(39)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(38)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(44)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(43)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(49)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(53)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(55)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(56)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't care about inverted bookshelf or ceiling bookshelf",
"hide_query": "Hide all posts about ceiling bookshelf and inverted bookshelf",
"hidden_elements": [
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(43)",
"#react-container > section._browseWrapper_1uayx_1 > div._cards_15nuy_1:nth-child(4) > div._ibleCard_68y45_11:nth-child(52)"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews | Rotten Tomatoes",
"html_file": "hide_data_website/Rotten Tomatoes: Movies | TV Shows | Movie Trailers | Reviews | Rotten Tomatoes (1_30_2026 9:29:29 AM).html",
"annotations": [
{
"user_goal": "I only want to see movie to watch but not other distracting sections",
"hide_query": "Hide coming soon, trailers, and discover more",
"hidden_elements": [
"#media-lists > div.ordered-layout__list.ordered-layout__list--carousel:nth-child(4) > section.dynamic-poster-list > tiles-carousel-responsive-deprecated:nth-child(2)",
"#main-page-content > div.home-body:nth-child(2)"
],
"difficulty": "Hard",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I don't want to watch animation",
"hide_query": "Hide all animated mvoies",
"hidden_elements": [
"#media-lists > div.ordered-layout__list.ordered-layout__list--carousel:nth-child(6) > section.dynamic-poster-list > tiles-carousel-responsive-deprecated:nth-child(2) > tiles-carousel-responsive-item-deprecated.visible:nth-child(3)",
"#media-lists > div.ordered-layout__list.ordered-layout__list--carousel:nth-child(6) > section.dynamic-poster-list > tiles-carousel-responsive-deprecated:nth-child(2) > tiles-carousel-responsive-item-deprecated.visible:nth-child(5)",
"#media-lists > div.ordered-layout__list.ordered-layout__list--carousel:nth-child(4) > section.dynamic-poster-list > tiles-carousel-responsive-deprecated:nth-child(2) > tiles-carousel-responsive-item-deprecated.visible:nth-child(3)",
"#media-lists > div.ordered-layout__list.ordered-layout__list--carousel:nth-child(3) > section.dynamic-poster-list > tiles-carousel-responsive-deprecated:nth-child(2) > tiles-carousel-responsive-item-deprecated.visible:nth-child(6) > tile-dynamic:nth-child(1)",
"#media-lists > div.ordered-layout__list.ordered-layout__list--carousel:nth-child(3) > section.dynamic-poster-list > tiles-carousel-responsive-deprecated:nth-child(2) > tiles-carousel-responsive-item-deprecated.tile-first.visible:nth-child(2)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Search results | Udemy",
"html_file": "hide_data_website/Search results | Udemy (1_30_2026 10:32:41 AM).html",
"annotations": [
{
"user_goal": "I want to find posts for \"xxx\" days to learn a topic",
"hide_query": "Hide posts that say xxx days to learn something",
"hidden_elements": [
"#u155-popper-trigger--188 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible",
"#u155-popper-trigger--193 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I want high quality courses",
"hide_query": "I only want courses that have higher than 4.6 star.",
"hidden_elements": [
"#u155-popper-trigger--223 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible",
"#search-carousel > div.carousel-module--scroll-item--QZoY7:nth-child(2) > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.recommendations--search-course-card--D85Tk > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h3.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible",
"#u155-popper-trigger--233 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible",
"#u155-popper-trigger--253 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible",
"#u155-popper-trigger--278 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible",
"#u155-popper-trigger--183 > div > div.prefetching-wrapper-module--prefetching-wrapper--h55SO > section.vertical-card-module--card--Lgh-9.course-product-card--card--vJXkx > div.vertical-card-module--primary--g68s4 > div.vertical-card-module--primary-top---MLV-:nth-child(1) > div.common-card-module--primary-head--S0VcV:nth-child(2) > div:nth-child(1) > h2.ud-heading-lg.card-title-module--title--bv1rZ > a.ud-link-neutral.ud-custom-focus-visible"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
}
]
},
{
"page_title": "Search "ui ux" on Substack",
"html_file": "hide_data_website/Search "ui ux" on Substack (1_30_2026 9:55:56 AM).html",
"annotations": [
{
"user_goal": "I don't want to read about AI in UI/UX",
"hide_query": "Hide posts that use AI in UI/UX",
"hidden_elements": [
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(1) > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.reader2-page-body > div.pageStack-_TN0zS > div.pencraft.pc-display-flex:nth-child(4) > div.pencraft.pc-display-flex > div.pencraft.pc-gap-12",
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(1) > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.reader2-page-body > div.pageStack-_TN0zS > div.pencraft.pc-display-flex:nth-child(5) > div.pencraft.pc-gap-12",
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(1) > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.reader2-page-body > div.pageStack-_TN0zS > div.pencraft.pc-display-flex:nth-child(6) > div.pencraft.pc-gap-12",
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(1) > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.reader2-page-body > div.pageStack-_TN0zS > div.pencraft.pc-display-flex:nth-child(12) > div.pencraft.pc-gap-12",
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(1) > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.reader2-page-body > div.pageStack-_TN0zS > div.pencraft.pc-display-flex:nth-child(16) > div.pencraft.pc-gap-12"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I want a less distracting feed",
"hide_query": "Hide relevant people and new bestsellers section",
"difficulty": "Medium",
"hidden_elements": [
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.pencraft.pc-display-contents:nth-child(1) > div.pencraft.pc-display-flex",
"#reader-nav-page-scroll > div.pencraft.pc-display-flex > div.pencraft.pc-display-flex:nth-child(2) > div.pencraft.pc-display-contents:nth-child(3) > div.pencraft.pc-display-flex"
],
"category": "ATTENTION_RECENCY"
}
]
},
{
"page_title": "The best productivity tools to try in 2026 | Product Hunt",
"html_file": "hide_data_website/The best productivity tools to try in 2026 | Product Hunt (1_30_2026 10:13:05 AM).html",
"annotations": [
{
"user_goal": "I don't want applications that do not generate a lot of reviews",
"hide_query": "Hide apps that have reviews less than 200",
"hidden_elements": [
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(7) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(8) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(10) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(12) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(14) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(15) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want products that do not be used by a lot of other products",
"hide_query": "Hide apps that used by less than 200 products",
"hidden_elements": [
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(6) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(7) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(8) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(9) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(10) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(11) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(12) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(13) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(14) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(15) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want low quality app that no one cares",
"hide_query": "Hide apps that has less than 4.9 star, used by less than 200 products and has less than 200 reviews",
"hidden_elements": [
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(2) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(3) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(5) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(6) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(9) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(10) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(11) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(12) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(13) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(14) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(15) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(8) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(7) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)"
],
"difficulty": "Hard",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I only care for ios app and has more than 199 reviews",
"hide_query": "Hide apps that are not IOS and has less than 200 reviews.",
"hidden_elements": [
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(12) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(11) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(10) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(8) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(7) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(4) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(3) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(2) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(1) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(14) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)",
"#content > div:nth-child(2) > div:nth-child(1) > ul.flex.flex-col:nth-child(3) > li:nth-child(15) > div.relative.isolate > div.col-span-2.col-start-2:nth-child(2) > a.flex.flex-col:nth-child(1) > span.absolute.inset-0:nth-child(3)"
],
"difficulty": "Medium",
"category": "VALUE_QUALITY"
}
]
},
{
"page_title": "TOP 10 BEST INDIAN FOOD IN SAN FRANCISCO, CA - UPDATED 2026 - YELP",
"html_file": "hide_data_website/TOP 10 BEST INDIAN FOOD IN SAN FRANCISCO, CA - UPDATED 2026 - YELP (1_30_2026 9:10:12 AM).html",
"annotations": [
{
"user_goal": "I want to find restaurants that fit with my needs",
"hide_query": "Hide restaurants below 4 stars, closed until 11 am, and not indian food",
"hidden_elements": [
"#main-content > ul.list__09f24__gE1oR:nth-child(4) > li.y-css-mhg9c5:nth-child(1) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.ABP.y-css-pwt8yl",
"#main-content > ul.list__09f24__gE1oR:nth-child(4) > li.y-css-mhg9c5:nth-child(2) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.ABP.y-css-pwt8yl",
"#main-content > ul.list__09f24__gE1oR:nth-child(4) > li.y-css-mhg9c5:nth-child(3) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.ABP.y-css-pwt8yl",
"#main-content > ul.list__09f24__gE1oR:nth-child(6) > li.y-css-mhg9c5:nth-child(10) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.y-css-pwt8yl:nth-child(1)",
"#main-content > ul.list__09f24__gE1oR:nth-child(6) > li.y-css-mhg9c5:nth-child(2) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.y-css-pwt8yl:nth-child(1)",
"#main-content > ul.list__09f24__gE1oR:nth-child(6) > li.y-css-mhg9c5:nth-child(7) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.y-css-pwt8yl:nth-child(1)",
"#main-content > ul.list__09f24__gE1oR:nth-child(6) > li.y-css-mhg9c5:nth-child(8) > div",
"#main-content > ul.list__09f24__gE1oR:nth-child(6) > li.y-css-mhg9c5:nth-child(9) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.y-css-pwt8yl:nth-child(1)"
],
"difficulty": "Hard",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I am not in the mood for vegan food",
"hide_query": "Hide vegan restaurants",
"hidden_elements": [
"#main-content > ul.list__09f24__gE1oR:nth-child(4) > li.y-css-mhg9c5:nth-child(1) > div > div.container__09f24__zywYN.hoverable__09f24__CHHO9:nth-child(1) > div.ABP.y-css-pwt8yl"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Top Songs - USA | Spotify Playlist",
"html_file": "hide_data_website/Top Songs - USA | Spotify Playlist (1_30_2026 10:08:44 AM).html",
"annotations": [
{
"user_goal": "I don't like Taylor Swift",
"hide_query": "Hide Taylor Swift songs",
"hidden_elements": [
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(7) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I like Harry Styles and Bruno Mars",
"hide_query": "Hide all songs except Harry Styles and Bruno Mars",
"hidden_elements": [
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(32) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(31) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(30) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(29) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(28) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(27) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(26) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(25) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(24) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(23) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(22) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(21) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(20) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(19) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(18) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(17) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(16) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(15) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(14) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(13) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(12) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(11) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(10) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(9) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(8) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(7) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(6) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(5) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(3) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv",
"#main-view > div.main-view-container:nth-child(2) > div.main-view-container__scroll-node.qLlzLghnvcCySJ8T:nth-child(2) > div:nth-child(1) > div.main-view-container__scroll-node-child > main.J6wP3V0xzh0Hj_MS > section.bxyjZHThZj4JwjoI:nth-child(1) > div.LUXUp8VNfbIoaJCl:nth-child(2) > div.q8mQFn7r8UYsKdHE:nth-child(3) > div.contentSpacing > div.eaxF79s4oV8I2CPQ:nth-child(1) > div.LuZwiEbNbfQcEtkT.E6J2sVRgHMIQJ42C > div.m9t_KhZ6MI0XQj9b:nth-child(2) > div:nth-child(2) > div:nth-child(2) > div.GzWlvg0xI8IJiSoY.u5wEtE_x69YxkLdv"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "US UK music results on SoundCloud",
"html_file": "hide_data_website/US UK music results on SoundCloud (1_30_2026 10:29:04 AM).html",
"annotations": [
{
"user_goal": "I do not like Taylor Swift and Ariana Grande",
"hide_query": "Hide all songs from Taylor Swift and Ariana Grande",
"hidden_elements": [
"#content > div > div.l-search.l-fixed-fluid > div.l-main:nth-child(3) > div.search > div.search__listWrapper > div.searchList.lazyLoadingList > ul.lazyLoadingList__list.sc-list-nostyle:nth-child(1) > li.searchList__item.sc-mt-3x:nth-child(2) > div.searchItem > div.sound.searchItem__trackItem > div.sound__body > div.sound__content:nth-child(2) > div.sound__footer.g-all-transitions-300:nth-child(3) > div.sound__trackList:nth-child(1) > div.compactTrackList.sc-border-light > div.compactTrackList__listWrapper:nth-child(1) > div.compactTrackList__listContainer > ul.trackList__item.sc-border-light-bottom > li.compactTrackList__item:nth-child(4) > div.trackItem.g-flex-row",
"#content > div > div.l-search.l-fixed-fluid > div.l-main:nth-child(3) > div.search > div.search__listWrapper > div.searchList.lazyLoadingList > ul.lazyLoadingList__list.sc-list-nostyle:nth-child(1) > li.searchList__item.sc-mt-3x:nth-child(2) > div.searchItem > div.sound.searchItem__trackItem > div.sound__body > div.sound__content:nth-child(2) > div.sound__footer.g-all-transitions-300:nth-child(3) > div.sound__trackList:nth-child(1) > div.compactTrackList.sc-border-light > div.compactTrackList__listWrapper:nth-child(1) > div.compactTrackList__listContainer > ul.trackList__item.sc-border-light-bottom > li.compactTrackList__item:nth-child(5) > div.trackItem.g-flex-row",
"#content > div > div.l-search.l-fixed-fluid > div.l-main:nth-child(3) > div.search > div.search__listWrapper > div.searchList.lazyLoadingList > ul.lazyLoadingList__list.sc-list-nostyle:nth-child(1) > li.searchList__item.sc-mt-3x:nth-child(13) > div.searchItem > div.sound.searchItem__trackItem > div.sound__body > div.sound__content:nth-child(2) > div.sound__footer.g-all-transitions-300:nth-child(3) > div.sound__trackList:nth-child(1) > div.compactTrackList.sc-border-light > div.compactTrackList__listWrapper:nth-child(1) > div.compactTrackList__listContainer > ul.trackList__item.sc-border-light-bottom > li.compactTrackList__item:nth-child(4) > div.trackItem.g-flex-row",
"#content > div > div.l-search.l-fixed-fluid > div.l-main:nth-child(3) > div.search > div.search__listWrapper > div.searchList.lazyLoadingList > ul.lazyLoadingList__list.sc-list-nostyle:nth-child(1) > li.searchList__item.sc-mt-3x:nth-child(13) > div.searchItem > div.sound.searchItem__trackItem > div.sound__body > div.sound__content:nth-child(2) > div.sound__footer.g-all-transitions-300:nth-child(3) > div.sound__trackList:nth-child(1) > div.compactTrackList.sc-border-light > div.compactTrackList__listWrapper:nth-child(1) > div.compactTrackList__listContainer > ul.trackList__item.sc-border-light-bottom > li.compactTrackList__item:nth-child(5) > div.trackItem.g-flex-row"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't like KPOP song",
"hide_query": "Hide all KPOP songs",
"hidden_elements": [
"#content > div > div.l-search.l-fixed-fluid > div.l-main:nth-child(3) > div.search > div.search__listWrapper > div.searchList.lazyLoadingList > ul.lazyLoadingList__list.sc-list-nostyle:nth-child(1) > li.searchList__item.sc-mt-3x:nth-child(20) > div.searchItem > div.sound.searchItem__trackItem > div.sound__body > div.sound__content:nth-child(2) > div.sound__footer.g-all-transitions-300:nth-child(3) > div.sound__trackList:nth-child(1) > div.compactTrackList.sc-border-light > div.compactTrackList__listWrapper:nth-child(1) > div.compactTrackList__listContainer > ul.trackList__item.sc-border-light-bottom > li.compactTrackList__item:nth-child(5) > div.trackItem.g-flex-row"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "craigslist: auburn jobs, apartments, for sale, services, community, and events",
"html_file": "hide_data_website/craigslist: auburn jobs, apartments, for sale, services, community, and events (2_5_2026 3:02:44 PM).html",
"annotations": [
{
"user_goal": "I don't care about apple, arts, boats and books",
"hide_query": "Hide all items about apple, arts boats and books.",
"hidden_elements": [
"#forums0 > li:nth-child(1) > a",
"#sss0 > li:nth-child(13) > a.boo",
"#sss0 > li:nth-child(14) > a.bka",
"#sss0 > li:nth-child(12) > a.bpa",
"#forums0 > li:nth-child(2) > a",
"#sss0 > li:nth-child(3) > a.ara"
],
"difficulty": "Hard",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about computer and electronics",
"hide_query": "Hide all items about computers and electronics",
"hidden_elements": [
"#sss0 > li:nth-child(21) > a.syp > span.txt",
"#sss0 > li:nth-child(22) > a.sya",
"#sss0 > li:nth-child(23) > a.ela",
"#sss0 > li:nth-child(18) > a.moa",
"#ggg0 > li:nth-child(1) > a.cpg > span.txt",
"#sss0 > li:nth-child(17) > a.ema"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Kalshi - Prediction Market for Trading the Future",
"html_file": "hide_data_website/Kalshi - Prediction Market for Trading the Future (2_5_2026 3:09:42 PM).html",
"annotations": [
{
"user_goal": "I only care about entries that have a high probability",
"hide_query": "Hide posts that have the probability of Yes less than 80%.",
"hidden_elements": [
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.relative:nth-child(1) > div.relative.flex:nth-child(1) > div.flex-shrink-0.w-full:nth-child(1) > div.flex.flex-col > div.relative.flex:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col > div.flex.flex-col:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(6) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(6) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I only want entries that have a high volume",
"hide_query": "Hide entries that have at least 15 million in total volume.",
"hidden_elements": [
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(6) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(6) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(6) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(6) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(5) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(4) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about football",
"hide_query": "Hide all bets on football",
"hidden_elements": [
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about certain people",
"hide_query": "Hide all posts about Trump, Taylor Swift, Logan Paul",
"hidden_elements": [
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(3)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(2)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(3) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(4)",
"#top-level-layout > div.box-border.w-full:nth-child(4) > div.px-3.sm\\:px-1 > div.flex-1.min-w-0:nth-child(1) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.flex-col:nth-child(2) > div.flex.justify-center > div.w-full > div.relative:nth-child(1) > div.grid.gap-2 > div.no-underline.\\!text-text-x10:nth-child(1)"
],
"difficulty": "Hard",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "(5) Quora",
"html_file": "hide_data_website/(5) Quora (2_5_2026 3:11:42 PM).html",
"annotations": [
{
"user_goal": "I don't care about posts that does not have a lot of upvotes and replies",
"hide_query": "Hide posts that have less than 5K upvote. and less than 200 replies",
"hidden_elements": [
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(10) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(2) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(4) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(11) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(12) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(17) > div.q-box.dom_annotate_multifeed_bundle_QuestionsBundle > div.q-box.qu-borderBottom:nth-child(2) > div > div.q-box > div.q-box > div > div.q-box > div.q-box.puppeteer_test_question_component_base > div",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(17) > div.q-box.dom_annotate_multifeed_bundle_QuestionsBundle > div.q-box:nth-child(3) > div > div.q-box > div.q-box > div > div.q-box",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(19) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(21) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(22) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)"
],
"difficulty": "Medium",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I care about Tech only",
"hide_query": "Hide all posts that are not related to tech",
"hidden_elements": [
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(22) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(21) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(16) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(15) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(12) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(11) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(7) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(6) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(5) > div.q-box.dom_annotate_multifeed_bundle_PostBundle > div.q-box > div.q-box > div > div > div.q-box.puppeteer_test_tribe_post_item_feed_story",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(2) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I only wnat posts with a lot of upvotes",
"hide_query": "Hide posts that are less than 1K upvotes",
"hidden_elements": [
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(10) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(2)",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(21) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle > div.q-box > div.q-box > div.q-box > div > div > div > div.q-box:nth-child(1)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I only care about posts that user shares",
"hide_query": "Hide posts that have no shares",
"hidden_elements": [
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(10) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle",
"#mainContent > div.q-box.dom_annotate_multifeed_home > div > div:nth-child(2) > div.q-box.dom_annotate_multifeed_bundle_AnswersBundle"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
}
]
},
{
"page_title": "Auburn AL Real Estate - Auburn AL Homes For Sale | Zillow",
"html_file": "hide_data_website/Auburn AL Real Estate - Auburn AL Homes For Sale | Zillow (2_5_2026 3:13:37 PM).html",
"annotations": [
{
"user_goal": "I only want house that are less than 400K",
"hide_query": "Hide houses that are more than 400K",
"hidden_elements": [
"#zpid_2068367152 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_76049949 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_2056572588 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_76047964 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_76042465 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_331724209 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_210915297 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_120125384 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_76044027 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_2067955494 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_459936592 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_126371611 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_76050447 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_120127327 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_90652168 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_90652416 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_113268764 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_90654038 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I only want houses with at least 3 beds",
"hide_query": "Hide all entries that have less than 3 beds",
"hidden_elements": [
"#zpid_2107762755 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_457727283 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)",
"#zpid_210893813 > div.StyledCard-c11n-8-109-3__sc-1w6p0lv-0.icLwbG > div.StyledPropertyCardDataWrapper-c11n-8-109-3__sc-hfbvv9-0.gpfUSu:nth-child(1)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "New In All | Fashion New In All | SHEIN USA",
"html_file": "hide_data_website/New In All | Fashion New In All | SHEIN USA (2_5_2026 3:14:23 PM).html",
"annotations": [
{
"user_goal": "I have a limited budget",
"hide_query": "Hide all items that are more than 12$",
"hidden_elements": [
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(76)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(77)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(81)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(85)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(86)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(90)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(96)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(94)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(97)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(99)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(101)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(105)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(106)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(110)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(115)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(122)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(121)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(53)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(51)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(45)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(43)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(42)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(40)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(33)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(24) > div.product-card__top-wrapper:nth-child(1) > a.S-product-card__img-container.j-expose__product-item-img:nth-child(1)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(24)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(7)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(1)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(3)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want products that are too cheap",
"hide_query": "Hide all entries that are less than 5$",
"hidden_elements": [
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(5)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(6)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(9)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(8)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(12)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(13)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(15)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(17)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(16)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(19)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(21)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(23)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(22)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(25)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(26)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(31)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(32)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(35)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(34)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(37)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(39)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(38)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(48)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(46)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(54)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(68)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(67)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(71)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(74)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(73)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(78)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(80)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(91)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(95)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(103)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(109)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(112)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(114)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(117)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(118)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(119)",
"#product-list-v2 > div.product-list-v2 > div.product-list-v2__main_side.product-list-v2__main_top:nth-child(2) > div.product-list-v2__container:nth-child(2) > div.product-list-v2__section:nth-child(2) > div.product-list.j-expose__product-list:nth-child(2) > div.product-card.multiple-row-card:nth-child(124)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
}
]
},
{
"page_title": "AMC Theatres - movie times, movie trailers, buy tickets and gift cards.",
"html_file": "hide_data_website/AMC Theatres - movie times, movie trailers, buy tickets and gift cards. (2_5_2026 2:53:18 PM).html",
"annotations": [
{
"user_goal": "I want to watch short movies",
"hide_query": "Hide all movies more than 2 hours",
"hidden_elements": [
"#radix-\\:r0\\:-content-Now-Playing > div.relative > div.glide.movie-list-slider > div.glide__track.mx-auto:nth-child(1) > ul.glide__slides > li.glide__slide.p-10:nth-child(10) > div.flex.flex-col"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I want movies released before Feb 1st",
"hide_query": "Hide all movies released after Feb 1st.",
"hidden_elements": [
"#radix-\\:r0\\:-content-Now-Playing > div.relative > div.glide.movie-list-slider > div.glide__track.mx-auto:nth-child(1) > ul.glide__slides > li.glide__slide.p-10:nth-child(12)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "NYT Cooking - Recipes and Cooking Guides From The New York Times",
"html_file": "hide_data_website/NYT Cooking - Recipes and Cooking Guides From The New York Times (2_5_2026 3:16:11 PM).html",
"annotations": [
{
"user_goal": "I don't want short recipe",
"hide_query": "Hide all recipes that are less than 20 minutes",
"hidden_elements": [
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(5) > section.newestRecipesCarousel_newestRecipesCarouselWrapper__07RhO:nth-child(2) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(4)",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(5) > section.trendingCarousel_trendingCarousel__01TV7:nth-child(3) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(3) > div.recipecard_recipeCard__yTYhK > article.atoms_card__MIRyu:nth-child(1) > a.link_link__7WCQy.link_default__lKxiG",
"#collection-carousel-43447550 > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(4)",
"#collection-carousel-43447550 > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(6) > div.recipecard_recipeCard__yTYhK > article.atoms_card__MIRyu:nth-child(1) > a.link_link__7WCQy.link_default__lKxiG",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(1) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(3) > div.recipecard_recipeCard__yTYhK > article.atoms_card__MIRyu:nth-child(1) > a.link_link__7WCQy.link_default__lKxiG",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(1) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(2) > div.recipecard_recipeCard__yTYhK > article.atoms_card__MIRyu:nth-child(1) > a.link_link__7WCQy.link_default__lKxiG",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(2) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(2)",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(2) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(12)",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(2) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(14)",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(2) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(19)",
"#__next > main:nth-child(2) > div.homepagecontent_homepageContent__4btC_ > div.pagegrid_container__ExzOM > section.homepagecontent_homepageSection__f0qT3:nth-child(8) > section.collectioncarouselssection_collectionCarouselsSection__amGCu:nth-child(3) > div.collectioncarouselssection_collectionCarousel__EnAyf:nth-child(5) > div.carousel_carousel__b3g0D.carousel_standardCards__0AIpk > div.carousel_carouselContainer__7ZNEI.shouldHidePrevArrow:nth-child(2) > div.carousel_carouselFrame__oFfIn:nth-child(2) > ul.carousel_cardList___DsNg > li:nth-child(4)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Online Courses from IBM",
"html_file": "hide_data_website/Online Courses from IBM (2_5_2026 2:58:21 PM).html",
"annotations": [
{
"user_goal": "I don't want data engineering course",
"hide_query": "Hide all courses that are about data engineer",
"hidden_elements": [
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(11) > a.w-full.h-full > div.text-card-foreground.shadow > div.p-4.pb-0:nth-child(3)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(11) > a.w-full.h-full > div.text-card-foreground.shadow > div.p-6.pt-0:nth-child(4)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(11) > a.w-full.h-full > div.text-card-foreground.shadow > div.flex.flex-col:nth-child(2) > img.optanon-category-C0001.m-0:nth-child(1)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(11) > a.w-full.h-full > div.text-card-foreground.shadow > div.w-full.flex:nth-child(1)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(13) > a.w-full.h-full > div.text-card-foreground.shadow > div.w-full.flex:nth-child(1)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(13) > a.w-full.h-full > div.text-card-foreground.shadow > div.flex.flex-col:nth-child(2) > img.optanon-category-C0001.m-0:nth-child(1)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(13) > a.w-full.h-full > div.text-card-foreground.shadow > div.p-6.pt-0:nth-child(4)",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(13) > a.w-full.h-full > div.text-card-foreground.shadow > div.p-4.pb-0:nth-child(3)"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about prompt and project management",
"hide_query": "Remove all courses that are about prompt engineering and project management",
"hidden_elements": [
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(7) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(4) > a.w-full.h-full > div.text-card-foreground.shadow",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(7) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(7) > a.w-full.h-full > div.text-card-foreground.shadow",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(23) > a.w-full.h-full > div.text-card-foreground.shadow",
"div:nth-child(2) > div.container.py-4:nth-child(2) > div.md\\:mb-12:nth-child(9) > div.gap-4.py-4:nth-child(2) > div.w-full.max-w-\\[302px\\]:nth-child(27) > a.w-full.h-full > div.text-card-foreground.shadow"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Inbox (3,995) - ronaldotruong2003@gmail.com - Gmail",
"html_file": "hide_data_website/Inbox (3,995) - ronaldotruong2003@gmail.com - Gmail (2_5_2026 3:02:59 PM).html",
"annotations": [
{
"user_goal": "I don't want spam email appearing on my gmail",
"hide_query": "Hide all gmail that are about nandana, aiden and rudy for me",
"hidden_elements": [
"#\\:2j",
"#\\:3z",
"#\\:5s",
"#\\:5f",
"#\\:jv"
],
"difficulty": "Hard",
"category": "TRUST_RISK"
},
{
"user_goal": "I don't care about Amazon purchases",
"hide_query": "Hide all emails about Amazon",
"hidden_elements": [
"#\\:3m",
"#\\:2w",
"#\\:4p",
"#\\:52",
"#\\:65",
"#\\:6i",
"#\\:6v",
"#\\:78",
"#\\:7y",
"#\\:8b",
"#\\:8o",
"#\\:91",
"#\\:9e",
"#\\:9r",
"#\\:a4",
"#\\:au",
"#\\:ah",
"#\\:b7",
"#\\:bk",
"#\\:bx",
"#\\:ca",
"#\\:cn",
"#\\:d0",
"#\\:e3",
"#\\:eg",
"#\\:et",
"#\\:f6",
"#\\:fj",
"#\\:g9",
"#\\:gz",
"#\\:gm",
"#\\:hc",
"#\\:hp",
"#\\:i2",
"#\\:if",
"#\\:is",
"#\\:ji",
"#\\:j5"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "AliExpress - Affordable Chinese Stores & Free Shipping - Online Shopping",
"html_file": "hide_data_website/AliExpress - Affordable Chinese Stores & Free Shipping - Online Shopping (2_5_2026 3:13:54 PM).html",
"annotations": [
{
"user_goal": "I don't want expensive items",
"hide_query": "Hide all listings that are over 40$",
"hidden_elements": [
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(141) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(111) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(38) > div._9HTSH",
"#main > div.group-floor:nth-child(4) > div > div.cc_be > div.cc_f > div.eg_eh > div.eg_ea:nth-child(2) > div.l7_m:nth-child(2) > a > div.l7_f > div.l7_ma:nth-child(2) > div.cq_cr.l7_b2 > div.mp_be.cq_ao:nth-child(2) > div:nth-child(1) > div.l7_g7 > div.hw_ec > div.l7_b3.hw_ec"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't want items free with any purchase",
"hide_query": "Hide all entries that are free with any purchase",
"hidden_elements": [
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(31) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(32) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(41) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(43) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(73) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(103) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(101) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(109) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(110) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(149) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(169) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(168) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(167) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(146) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(147) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(121) > div._9HTSH",
"#main > div.common-floor:nth-child(8) > div.cc_be > div.cc_f > div.aa_ab.aa_ac > div._1wVX7._32_es:nth-child(2) > div._2FypS:nth-child(124) > div._9HTSH"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Search | MIT OpenCourseWare | Free Online Course Materials",
"html_file": "hide_data_website/Search | MIT OpenCourseWare | Free Online Course Materials (2_5_2026 3:17:18 PM).html",
"annotations": [
{
"user_goal": "I don't want math courses",
"hide_query": "Hide math courses",
"hidden_elements": [
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(1) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(9) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(18) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(19) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(24) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(26) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(28) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(34) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(36) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(37) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(38) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(39) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(42) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(45) > div.card.learning-resource-card > div.card-contents"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't want non-stem courses",
"hide_query": "Hide all non-stem courses for me",
"hidden_elements": [
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(2) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(5) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(7) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(8) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(12) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(15) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(22) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(30) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(40) > div.card.learning-resource-card > div.card-contents",
"#search-page > div.search-page.w-100 > div.container.px-lg-0 > div.row.search-filter-drawer:nth-child(2) > div.search-results-area.col-12:nth-child(2) > div:nth-child(2) > section:nth-child(1) > article:nth-child(41) > div.card.learning-resource-card > div.card-contents"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Ground News",
"html_file": "hide_data_website/Ground News (2_5_2026 3:11:17 PM).html",
"annotations": [
{
"user_goal": "I want only neutral news",
"hide_query": "Hide all posts that have more than 40% either the left or the right",
"hidden_elements": [
"#newsroom-feed_083e74be-cc3e-40c8-8aef-9d28c485e8b5_card5 > div.flex.flex-col:nth-child(2)",
"#newsroom-blindspot > div.w-full.tablet\\:w-1\\/2:nth-child(1) > a.h-full.cursor-pointer",
"#newsroom-blindspot > div.w-full.tablet\\:w-1\\/2:nth-child(2) > a.h-full.cursor-pointer"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about Trump",
"hide_query": "Remove all news from Trump",
"hidden_elements": [
"#newsroom-feed_rss_17319_1770201850060_2_card3 > div.flex.flex-col:nth-child(2)",
"#newsroom-feed_858fec63-178a-456f-b679-878481c9d3c4_card4 > div.flex.flex-col:nth-child(2)",
"#newsroom-blindspot > div.min-w-full.group:nth-child(2) > a.flex.flex-col"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "(1) Home _ X",
"html_file": "hide_data_website/(1) Home _ X (2_5_2026 2:53:57 PM).html",
"annotations": [
{
"user_goal": "I don't care Elon Musk",
"hide_query": "Hide all posts from Elon Musk",
"hidden_elements": [
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-14lw9ot:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(10) > div.css-175oi2r.r-j5o65s > div.css-175oi2r > article.css-175oi2r.r-18u37iz",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-14lw9ot:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(9) > div.css-175oi2r.r-1adg3ll > div.css-175oi2r > article.css-175oi2r.r-1ut4w64",
"#react-root > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-13awgt0 > div.css-175oi2r.r-1f2l425:nth-child(3) > main.css-175oi2r.r-16y2uox:nth-child(4) > div.css-175oi2r.r-150rngu > div.css-175oi2r.r-aqfbo4 > div.css-175oi2r.r-1oszu61 > div.css-175oi2r.r-14lw9ot:nth-child(1) > div.css-175oi2r > div.css-175oi2r.r-f8sm7e:nth-child(5) > section.css-175oi2r > div.css-175oi2r:nth-child(2) > div > div.css-175oi2r:nth-child(18) > div.css-175oi2r.r-j5o65s > div.css-175oi2r > article.css-175oi2r.r-18u37iz"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Netflix - Wikipedia",
"html_file": "hide_data_website/Netflix - Wikipedia (2_5_2026 3:15:49 PM).html",
"annotations": [
{
"user_goal": "I only want text-based content",
"hide_query": "Remove all pictures on this page",
"hidden_elements": [
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(214) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(164) > a.mw-file-description:nth-child(1)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(164) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(153) > a.mw-file-description:nth-child(1)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(153) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(138) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(138) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(78) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size:nth-child(78) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-right:nth-child(67) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-right:nth-child(67) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-right:nth-child(68) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-right:nth-child(68) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-right:nth-child(66) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-right:nth-child(66) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(16) > div.thumbinner.multiimageinner > div.trow:nth-child(4) > div.tsingle > div.thumbcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(16) > div.thumbinner.multiimageinner > div.trow:nth-child(4) > div.tsingle > div.thumbimage:nth-child(1) > span > a.mw-file-description > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(16) > div.thumbinner.multiimageinner > div.trow:nth-child(3) > div.tsingle > div.thumbcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(16) > div.thumbinner.multiimageinner > div.trow:nth-child(3) > div.tsingle > div.thumbimage:nth-child(1) > span > a.mw-file-description > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(16) > div.thumbinner.multiimageinner > div.trow:nth-child(2) > div.tsingle > div.thumbcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(16) > div.thumbinner.multiimageinner > div.trow:nth-child(2) > div.tsingle > div.thumbimage:nth-child(1) > span > a.mw-file-description > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-left:nth-child(21) > figcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > figure.mw-default-size.mw-halign-left:nth-child(21) > a.mw-file-description:nth-child(1) > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(14) > div.thumbinner.multiimageinner > div.trow:nth-child(2) > div.tsingle > div.thumbcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(14) > div.thumbinner.multiimageinner > div.trow:nth-child(2) > div.tsingle > div.thumbimage:nth-child(1) > span > a.mw-file-description > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(14) > div.thumbinner.multiimageinner > div.trow:nth-child(1) > div.tsingle > div.thumbcaption:nth-child(2)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.thumb.tmulti:nth-child(14) > div.thumbinner.multiimageinner > div.trow:nth-child(1) > div.tsingle > div.thumbimage:nth-child(1) > span > a.mw-file-description > img.mw-file-element",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > table.infobox.vcard:nth-child(5) > tbody:nth-child(2) > tr:nth-child(1) > td.infobox-image > span.mw-default-size:nth-child(1) > a.mw-file-description > img.mw-file-element",
"#wlf-link > div.cbnnr-container"
],
"difficulty": "Easy",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I only want the main sections",
"hide_query": "Remove all references, see also and notes",
"hidden_elements": [
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.mw-heading.mw-heading2:nth-child(219)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > ul:nth-child(220) > li",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.mw-heading.mw-heading2:nth-child(221)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div:nth-child(223) > div.mw-references-wrap",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div.mw-heading.mw-heading2:nth-child(224)",
"#mw-content-text > div.mw-content-ltr.mw-parser-output:nth-child(2) > div:nth-child(226) > div.mw-references-wrap.mw-references-columns"
],
"difficulty": "Hard",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Etsy - Shop for handmade, vintage, custom, and unique gifts for everyone",
"html_file": "hide_data_website/Etsy - Shop for handmade, vintage, custom, and unique gifts for everyone (2_5_2026 3:12:53 PM).html",
"annotations": [
{
"user_goal": "I only care cheap listings",
"hide_query": "Remove all posts that are over 50$",
"hidden_elements": [
"#content_group_ba_v2__100-22 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2) > div.wt-grid.wt-flex-nowrap > div.hp-carousel__card:nth-child(11) > div.js-merch-stash-check-listing.v2-listing-card > a.listing-link.wt-display-inline-block:nth-child(1)",
"#content_group_ba_v2__59-32 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2) > div.wt-grid.wt-flex-nowrap > div.hp-carousel__card:nth-child(10) > div.js-merch-stash-check-listing.v2-listing-card > a.listing-link.wt-display-inline-block:nth-child(1)",
"#content_group_ba_v2__59-32 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2) > div.wt-grid.wt-flex-nowrap > div.hp-carousel__card:nth-child(12) > div.js-merch-stash-check-listing.v2-listing-card > a.listing-link.wt-display-inline-block:nth-child(1)",
"#content_group_ba_v2__59-32 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2) > div.wt-grid.wt-flex-nowrap > div.hp-carousel__card:nth-child(6) > div.js-merch-stash-check-listing.v2-listing-card > a.listing-link.wt-display-inline-block:nth-child(1)",
"#content_group_ba_v2__59-32 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2) > div.wt-grid.wt-flex-nowrap > div.hp-carousel__card:nth-child(1) > div.js-merch-stash-check-listing.v2-listing-card > a.listing-link.wt-display-inline-block:nth-child(1)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't care about cats or wedding dress",
"hide_query": "Hide sections about cats or wedding dress",
"hidden_elements": [
"#content_group_ba_v2__100-22 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2)",
"#content_group_ba_v2__100-22 > div.hp-carousel__header-group.wt-display-flex-xs:nth-child(1)",
"#content_group_ba_v2__59-32 > div.hp-carousel__header-group.wt-display-flex-xs:nth-child(1)",
"#content_group_ba_v2__59-32 > div.hp-carousel__container.wt-position-relative:nth-child(2) > div.hp-carousel__scrollable.hp-carousel__scrollable--extend-right:nth-child(2)",
"#content_group_ba_v2__33-15"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
},
{
"user_goal": "I don't care about anniversary or spring floral",
"hide_query": "Hide sections about anniversary or spring floral",
"hidden_elements": [
"#content_group_ba_v2__91-69",
"#content_group_ba_v2__97-83",
"#content_group_ba_v2__91-83"
],
"difficulty": "Medium",
"category": "TASTE_INTERESTS"
}
]
},
{
"page_title": "Reddit - The heart of the internet",
"html_file": "hide_data_website/Reddit - The heart of the internet (2_5_2026 2:57:11 PM).html",
"annotations": [
{
"user_goal": "I only want recent posts",
"hide_query": "Remove posts from a day ago",
"hidden_elements": [
"#t3_1qvtha4 > a.absolute.inset-0:nth-child(1)",
"#t3_1qsvimf > a.absolute.inset-0:nth-child(1)",
"#t3_1qtgke0 > a.absolute.inset-0:nth-child(1)",
"#t3_1qvkz0q > a.absolute.inset-0:nth-child(1)",
"#t3_1qvrjpd > a.absolute.inset-0:nth-child(1)",
"#t3_1qvnoqa > a.absolute.inset-0:nth-child(1)",
"#t3_1qtigj7 > a.absolute.inset-0:nth-child(1)",
"#t3_1quuguc > a.absolute.inset-0:nth-child(1)",
"#t3_1qvxon0 > a.absolute.inset-0:nth-child(1)",
"#t3_1qu1zy6 > a.absolute.inset-0:nth-child(1)",
"#t3_1qvvj0h > a.absolute.inset-0:nth-child(1)",
"#t3_1qqvh8o > a.absolute.inset-0:nth-child(1)",
"#t3_1qu19fn > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Easy",
"category": "ATTENTION_RECENCY"
},
{
"user_goal": "I don't care about recent posts",
"hide_query": "Hide recent posts section and any posts that are posted 5 hours ago",
"hidden_elements": [
"#right-sidebar-contents > aside.flex.flex-col:nth-child(2) > recent-posts.nd\\:bg-neutral-background-weak.nd\\:rounded-4:nth-child(2)",
"#t3_1qws09x > a.absolute.inset-0:nth-child(1)",
"#t3_1qww2uu > a.absolute.inset-0:nth-child(1)"
],
"difficulty": "Medium",
"category": "ATTENTION_RECENCY"
}
]
},
{
"page_title": "(4) Facebook Marketplace | Facebook",
"html_file": "hide_data_website/(4) Facebook Marketplace | Facebook (2_5_2026 3:00:33 PM).html",
"annotations": [
{
"user_goal": "I only want cheap listings",
"hide_query": "Remove all listings that are over 20$",
"hidden_elements": [
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(17)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(18)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(9) > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x78zum5.xdt5ytf > div.x9f619.x1n2onr6 > div.x3ct3a4 > a.x1i10hfl.xjbqb8w > div.x78zum5.xdt5ytf > div.x1n2onr6:nth-child(1) > div.x1n2onr6.xh8yej3 > div.x1exxf4d.xpv9jar > div.x1i5p2am.x1whfx0g > div.x78zum5.x1a02dak > div.x9f619.x78zum5 > img.x15mokao.x1ga7v0g",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(9)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(10)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(7)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(4)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(2)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(1)"
],
"difficulty": "Easy",
"category": "VALUE_QUALITY"
},
{
"user_goal": "I don't care about shirt, book, and towel warmer",
"hide_query": "Remove all posts that are about towel warmer, books and shirts for me",
"hidden_elements": [
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(8)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(7)",
"#mount_0_0_H2 > div > div:nth-child(1) > div.x9f619.x1n2onr6 > div.x9f619.x1n2onr6:nth-child(4) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf:nth-child(2) > div.x9f619.x2lah0s:nth-child(1) > div.x9f619.x1n2onr6:nth-child(2) > div.x78zum5.xdt5ytf > div.x78zum5.xdt5ytf > div > div > div.x1mfogq2.xsfy40s > div > div:nth-child(3) > div.x16xn7b0.x6ikm8r > div:nth-child(1) > div > div.xjp7ctv > div > span.x1lliihq.x1iyjqo2 > div > div.x1c1uobl.xyri2b > div.x11t971q.xvc5jky > div.x8gbvx8.x78zum5:nth-child(2) > div.x9f619.x78zum5:nth-child(5)"
],
"difficulty": "Hard",
"category": "TASTE_INTERESTS"
}
]
}
] |