File: changelog.html

package info (click to toggle)
mozilla-noscript 10.1.9.6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,032 kB
  • sloc: xml: 12; makefile: 7
file content (6485 lines) | stat: -rw-r--r-- 324,580 bytes parent folder | download
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
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
<html>
<head><title>NoScript Security Suite Version History</title></head>
<body>

<h2>NoScript Security Suite 10.1.9.6 - Sept. 14, 2018</h2>
v 10.1.9.6
<br/>=============================================================
<br/>x [TB] Gracefully handle legacy external message recipients
<br/>x [XSS] Updated known HTML5 events
<br/>x Better IPV6 support
<br/>x UI support for protocol-only entries

<h2>NoScript Security Suite 10.1.9.6rc3 - Sept. 14, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.6rc2 - Sept. 10, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.6rc1 - Sept. 9, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.5rc1 - Sept. 9, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.5 - Sept. 9, 2018</h2>
v 10.1.9.5
<br/>=============================================================
<br/>x Fix for various content script timing related issues
<br/>  (thanks therube for reporting)

<h2>NoScript Security Suite 10.1.9.4 - Sept. 9, 2018</h2>
v 10.1.9.4
<br/>=============================================================
<br/>x Prevent total breakages when policies accidentally map
<br/>  to invalid match patterns
<br/>x Internal messaging dispatch better coping with multiple
<br/>  option windows
<br/>x Avoid multiple CSP DOM insertions

<h2>NoScript Security Suite 10.1.9.4rc1 - Sept. 9, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.3rc1 - Sept. 9, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.3 - Sept. 9, 2018</h2>
v 10.1.9.3
<br/>=============================================================
<br/>x Fixed message handling regression breaking embedders and
<br/>  causing potential internal message loops

<h2>NoScript Security Suite 10.1.9.2 - Sept. 8, 2018</h2>
v 10.1.9.2
<br/>=============================================================
<br/>x More efficient <a rel="nofollow" href="http://window.name">window.name</a>-based tab-scoped permissions
<br/>  persistence
<br/>x Fixed URL parsing bugs
<br/>x Fixed bug in requestKey generation
<br/>x [Build] Enhanced TLD data update subsystem
<br/>+ [UI] CUSTOM presets gets initialized with currently applied
<br/>  preset, including temporary/permanent status
<br/>x Improved internal message dispatching, avoiding potential
<br/>  race conditions
<br/>+ [L10n] Transifex integration
<br/>x Work-around for DOM-injected CSP not being honored when
<br/>  appended to the root element, rather than HEAD
<br/>+ Transparent support for FQDNs
<br/>x Better file: protocol support
<br/>x Full-page placeholders for media/plugin documents

<h2>NoScript Security Suite 10.1.9.2rc4 - Sept. 8, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.2rc3 - Sept. 8, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.2rc2 - Sept. 4, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.2rc1 - Sept. 3, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.1rc1 - Aug. 30, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9.1 - Aug. 30, 2018</h2>
v 10.1.9.1
<br/>=============================================================  
<br/>x Fixed NOSCRIPT emulation not running in contexts where
<br/>  service workers are disabled, such as private windows
<br/>  (thanks Peter Wu for patch)
<br/>x [Build] Fixed TLD regexp generation broken by CRLF 
<br/>  characters in input public suffix list

<h2>NoScript Security Suite 10.1.9 - Aug. 29, 2018</h2>
v 10.1.9
<br/>=============================================================
<br/>+ Completely revamped CSP backend, enforcing policies both in
<br/>  webRequest and in the DOM
<br/>+ Reload-less service worker busting  
<br/>- removed obsoleted failsafes, including forced reloads
<br/>x Better timing for popup UI feedback on permissions changes 
<br/>x [Tor] Reordered startup sequence to better cooperate with 
<br/>  embedders like the Tor Browser
<br/>x Send out a "started" message after initialization to help 
<br/>  embedders (like the Tor browser) interact with NoScript
<br/>x [Build] Better support for versions bumps
<br/>x Updated TLDs
<br/>x [Build] Improved TLD auto-updater

<h2>NoScript Security Suite 10.1.9rc6 - Aug. 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9rc5 - Aug. 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9rc4 - Aug. 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9rc3 - Aug. 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9rc2 - Aug. 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.9rc1 - Aug. 27, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.23 - Aug. 25, 2018</h2>
v 10.1.8.23
<br/>=============================================================
<br/>x Hotfix for reload loops before CSP management refactoring

<h2>NoScript Security Suite 10.1.8.23rc1 - Aug. 25, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.22 - Aug. 24, 2018</h2>
v 10.1.8.22
<br/>=============================================================
<br/>x Fixed reload loop on unrestricted tabs (thanks random for
<br/>  reporting)

<h2>NoScript Security Suite 10.1.8.21 - Aug. 24, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.21rc1 - Aug. 24, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.20 - Aug. 24, 2018</h2>
v 10.1.8.20
<br/>=============================================================
<br/>x Fixed Sites.domainImplies() misplaced optimization.
<br/>x <a rel="nofollow" href="http://build.sh">build.sh</a> support for quick stable release
<br/>x [L10n] Added Catalan (ca)

<h2>NoScript Security Suite 10.1.8.20rc1 - Aug. 24, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.19 - Aug. 23, 2018</h2>
v 10.1.8.19
<br/>=============================================================
<br/>x Fixed onResponseHeader failing on session restore because
<br/>  of onBeforeRequest not having being called.
<br/>x Fixed regression: framed documents' URLs not being reported
<br/>  in the UI (thanks xaex for report)

<h2>NoScript Security Suite 10.1.8.19rc2 - Aug. 23, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.19rc1 - Aug. 23, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.18 - Aug. 23, 2018</h2>
v 10.1.8.18
<br/>=============================================================
<br/>x More resilient and optimized Sites.domainImplies()
<br/>x Update ChildPolicies when automatic temp TRUST for 
<br/>  top-level documents is enabled
<br/>x Fixed messages from content scripts being "eaten" by the 
<br/>  wrong dispatcher when UI is open (thanks  skriptimaahinen)
<br/>x Fixed typo causing accidental permissions/status mismatches 
<br/>  being checked only while pages are still loading (thanks 
<br/>  skriptimaahinen)
<br/>x Fixed typo in XSS name sanitization script injection 
<br/>  (thanks skriptimaahinen)

<h2>NoScript Security Suite 10.1.8.18rc1 - Aug. 23, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17 - Aug. 22, 2018</h2>
v 10.1.8.17
<br/>=============================================================
<br/>x Fix: Sites.domainImplies() should match subdomains
<br/>x More coherent wrapper around the webex messaging API
<br/>x Fixed inconsistencies affecting ChildPolicies content 
<br/>  script auto-generated matching rules.
<br/>x Fixed potential issues with cross-process messages
<br/>x Simpler and more reliable safety net to ensure CSP headers 
<br/>  are injected last among WebExtensions
<br/>x Fixed regression causing refresh loops on pages which use
<br/>  type="object" requests to load images, css and other types
<br/>x [L10n] ru and de translations
<br/>+ [XSS] Updated HTML events auto-generate matching code to 
<br/>  use both latest Mozilla source code and archived data since 
<br/>  Firefox ESR 52
<br/>+ New dynamic scripts management strategy based on the 
<br/>  browser.contentScripts API, should fix some elusive, likely
<br/>  requestFilter-induced, bugs
<br/>x Fixed no-dot domains threated as empty TLDs (thanks
<br/>  Peter Wu for patch)
<br/>- Removed requestFilter hack for dynamic scripts management
<br/>+ [L10n] br and tr translations (thanks Transifex/OTF, 
<br/>  <a rel="nofollow" href="https://www.transifex.com/otf/noscript/">https://www.transifex.com/otf/noscript/</a>)
<br/>x Best effort to have webRequest.onHeaderReceived listener 
<br/>  run last (issue #6, thanks kkapsner)
<br/>x [L10n] Localized "NoScript Options" title (thanks Diklabyte)
<br/>x Fixed inline scripts not being reported to UI (thanks 
<br/>  skriptimaahinen for patch)
<br/>x Skip non-content windows when deferring startup page loads
<br/>  (thanks Rob Wu for reporting)
<br/>x Broader detection of UTF-8 encoding in responses (thanks
<br/>  Rob Wu for reporting)
<br/>x Improved support for debugging code removal in releases
<br/>x Fixed startup race condition with pending request tracking
<br/>x Fixed updating NoScript reloads tabs with revoked temporary 
<br/>  permissions.

<h2>NoScript Security Suite 10.1.8.17rc8 - Aug. 22, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc7 - Aug. 21, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc6 - Aug. 20, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc5 - Aug. 18, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc4 - Aug. 18, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc3 - Aug. 18, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc2 - Aug. 6, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.17rc1 - Aug. 4, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.16rc1 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.16 - July 28, 2018</h2>
v 10.1.8.16
<br/>=============================================================
<br/>x Fixed random stallings on page transitions (thanks sage11, 
<br/>  Brush and pbelleisle for reporting)

<h2>NoScript Security Suite 10.1.8.15 - July 28, 2018</h2>
v 10.1.8.15
<br/>=============================================================
<br/>x Fixed browser action icon not bein  updated on BF cache 
<br/>  navigation (thanks therube for reporting)

<h2>NoScript Security Suite 10.1.8.15rc1 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.14 - July 28, 2018</h2>
v 10.1.8.14
<br/>=============================================================
<br/>x Fixed regression in NOSCRIPT elements emulation.

<h2>NoScript Security Suite 10.1.8.13 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.13rc1 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.12 - July 28, 2018</h2>
v 10.1.8.12
<br/>=============================================================
<br/>x Fixed some video streams not playing anymore.

<h2>NoScript Security Suite 10.1.8.11 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.11rc1 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.10 - July 28, 2018</h2>
v 10.1.8.10rc1
<br/>=============================================================
<br/>x Fixed window.stop() being called on empty frames, causing
<br/>  WYSIWYG editors to break (thanks Dave Allen for reporting)

<h2>NoScript Security Suite 10.1.8.10rc1 - July 28, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9 - July 27, 2018</h2>
v 10.1.8.9
<br/>=============================================================
<br/>x Fixed externally handled resources opened in popups broken
<br/>  by dynamic script injection (thanks rpr and paulmcg for
<br/>  reporting)
<br/>x More edge case covered in dynamic script injection (thanks
<br/>  skriptimaahinen for reporting)
<br/>x Fixed some resource loading feedback glitches
<br/>x [XSS] Updated HTML event attributes matching
<br/>x Updated TLDs
<br/>x Fixed stalling embedded objects load on dynamic script
<br/>  injection (thanks therube for reporting)
<br/>x [L10n] Updated it (thanks Sebastiano Pistore)
<br/>x Work-around for serviceWorker loads bypassing webRequest
<br/>  (thanks therube for reporting)
<br/>x More flexible CSS layout for preset buttons (thanks fatboy)
<br/>x Improved edge case script disablement detection
<br/>x More reliable handling of edge cases on startup (thanks
<br/>  therube for reporting)
<br/>x Fixed dynamic script injection failing sometimes with 
<br/>  "No matching message handler" error (thanks skriptimaahinen
<br/>  for reporting)
<br/>x [Tor Browser, Linux] Replaced unicode glyphs not being 
<br/>  rendered on some browsers / platforms
<br/>x Prevent multiple canScript content messages during the same 
<br/>  page load
<br/>x [Tor/ESR60] Removed useless work-around suggested in moz bug 
<br/>  1410755, which caused Tor Browser content process crashes

<h2>NoScript Security Suite 10.1.8.9rc9 - July 26, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc8 - July 26, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc7 - July 26, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc6 - July 25, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc5 - July 25, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc4 - July 24, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc3 - July 22, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc2 - July 20, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.9rc1 - July 18, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.8 - July 17, 2018</h2>
v 10.1.8.8
<br/>=============================================================
<br/>x Prevent script injection from messing with
<br/>  content-disposition=attachment responses.

<h2>NoScript Security Suite 10.1.8.8rc1 - July 17, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.7 - July 16, 2018</h2>
v 10.1.8.7
<br/>=============================================================
<br/>x Fixed regression breaking meta refresh with relative URLs

<h2>NoScript Security Suite 10.1.8.6 - July 16, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.6rc1 - July 16, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.5 - July 16, 2018</h2>
v 10.1.8.5
<br/>=============================================================
<br/>x Completed fix for quoted URLs in meta refresh (thanks
<br/>  Juozas for reporting)

<h2>NoScript Security Suite 10.1.8.5rc1 - July 16, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.4 - July 16, 2018</h2>
v 10.1.8.4
<br/>=============================================================
<br/>x [L10n] Fixed es translation (thanks Deckan)
<br/>x Cosmetic bug fixes
<br/>x Updated TLDs

<h2>NoScript Security Suite 10.1.8.3 - July 16, 2018</h2>
v 10.1.8.3
<br/>=============================================================
<br/>x [XSS] Fixed InjectionChecker choking at some big JSON
<br/>  payloads sents as POST form data
<br/>x Fixed meta-refresh emulation confused by quoted URLs
<br/>x [ESR60] Fixed dynamic script injection issues with XML
<br/>  feeds (thanks skriptimaahinen for report)
<br/>x [ESR60] Work-around for Moz Bug 1410755
<br/>x Autosize preset buttons to accomodater bigger localized
<br/>  labels
<br/>x [L10n] Shortened de labels (thanks musonius)
<br/>x More graceful handling of internal and restricted URLs
<br/>  (thanks skriptimaahinen for report)
<br/>+ [L10n] Added de, es, fr, it, nl, pt_BR and zh_CN locales
<br/>  (courtesy of Mozilla's localization campaign)
<br/>x Switch to inline elements as "NOSCRIPT" HTML replacements
<br/>x Fixed subframe content changes producing ambiguous NoScript
<br/>  icon feedback
<br/>x More meaningful/useful popup on (semi)privileged documents
<br/>x [Tor Browser] Work-around for crypto-based uiid function
<br/>  failing on startup
<br/>x [Tor Browser] Backported new dynamic script injection to
<br/>  ESR60
<br/>+ Included license files in the XPI
<br/>+ [XSS] In-depth protection against native ES6 modules abuse
<br/>x Fixed dynamic script injection issues (thanks
<br/>  skriptimaahinen for help)
<br/>+ MSE media reporting and blocking (e.g. on Youtube)

<h2>NoScript Security Suite 5.1.8.7rc3 - July 12, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc11 - July 12, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc10 - July 11, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc9 - July 9, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc8 - July 8, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc7 - July 6, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc6 - July 3, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc5 - July 3, 2018</h2>
[no description]

<h2>NoScript Security Suite 5.1.8.7rc2 - July 2, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc4 - July 1, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc3 - June 20, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc2 - June 19, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.3rc1 - June 18, 2018</h2>
[no description]

<h2>NoScript Security Suite 5.1.8.7rc1 - June 14, 2018</h2>
[no description]

<h2>NoScript Security Suite 5.1.8.6 - June 12, 2018</h2>
[no description]

<h2>NoScript Security Suite 5.1.8.6rc1 - June 10, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.2 - May 29, 2018</h2>
v 10.1.8.2
<br/>=============================================================
<br/>+ Popup toolbar buttons fully configurable via Drag'n'Drop
<br/>x Removed redundant leading "NoScript" in window titles
<br/>x Work-around for Firefox 60 bug breaking about:blank pages
<br/>  when a WebExtension declares a "document_start" CSS (thanks
<br/>  skriptimaahinen for report and fix)
<br/>x Fixed buttons in the "hide area" still responsive to clicks

<h2>NoScript Security Suite 10.1.8.2rc4 - May 29, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.2rc3 - May 22, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.2rc2 - May 4, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.2rc1 - May 3, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.1 - April 27, 2018</h2>
v 10.1.8.1
<br/>=============================================================
<br/>+ [UI] "Disable restrictions for this tab" button in popup
<br/>+ [UI] "Disable restrictions globally" button in popup
<br/>x Fixed some content blocking stats collection bugs (Thanks
<br/>  Rob Wu and skriptimaahinen for reports)
<br/>x Fixed data: and blob: URIs could be loaded as object and
<br/>  media sources independently from the parent page's
<br/>  permissions (thanks skriptimaahinen for report)
<br/>x Several performance improvement in inter-process content
<br/>  blocking stats synchronization (thanks Rob Wu for report)
<br/>x [UI] Improved in-popup messages
<br/>x [UI] Simplified URL management in "Allow object" prompt
<br/>x Fixed dynamic scripts URL matching inconsistencies

<h2>NoScript Security Suite 10.1.8.1rc4 - April 27, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.1rc3 - April 26, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.1rc2 - March 26, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.8.1rc1 - March 25, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.5 - March 22, 2018</h2>
v 10.1.7.5
<br/>=============================================================
<br/>x Fixed edge case CSP injection bug (thanks Rob Wu)
<br/>x Optimized dynamic script injection (thanks Rob Wu)
<br/>x Fixed potential leak on dynamic script injection (thanks
<br/>  Rob Wu for report)
<br/>x Now NoScript's UI on privileged pages explains permissions
<br/>  cannot be configured there, rather than bluntly opening the 
<br/>  Options page (thanks Rob Wu for suggestion)

<h2>NoScript Security Suite 10.1.7.5rc1 - March 22, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.4 - March 22, 2018</h2>
v 10.1.7.4
<br/>=============================================================
<br/>x Fixed script enablement status not correctly detected on
<br/>  some pages rolling their own CSP (causing NOSCRIPT element
<br/>  and META refresh emulation not to be triggered)
<br/>x Fixed "Appearance" NoScript Options tab missing on Android
<br/>x [XSS] Fixed semicolon-separated JSON payloads DDOSing the
<br/>  JSON-optimizer, e.g. with <a rel="nofollow" href="http://syndication.twitter.com">syndication.twitter.com</a> subframes
<br/>  (thanks KonomiKitten and pal1000 for reports)
<br/>x [UI] Renamed "Scripts globally allowed (dangerous)" option 
<br/>  to "No permissions enforcement (dangerous)" to better 
<br/>  reflect its actual effect
<br/>x [UI] Better feedback about "No permission enforcement" by
<br/>  disabling the "Preset customization" section and and the 
<br/>  "Per-site Permissions" tab
<br/>x [UI] Moved XSS-related options to the "Advanced" tab
<br/>x Fixed disabled webgl breaking feeds on script-enabled sites
<br/>  (thanks pal1000 for reporting)
<br/>x Enhanced dynamic script injection if browser.contentScripts
<br/>  API is available
<br/>x Expanded support for webgl canvas placeholders

<h2>NoScript Security Suite 10.1.7.4rc3 - March 22, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.4rc2 - March 21, 2018</h2>
[no description]

<h2>NoScript Security Suite 5.1.8.5 - March 18, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.4rc1 - March 17, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.3 - March 16, 2018</h2>
v 10.1.7.3
<br/>=============================================================
<br/>x Fixed infinite script count report loops on some sites
<br/>  (thanks AuntyJack, @ALoss2 and others for reporting)
<br/>x Fixed localhost not being recognized as a domain (thanks 
<br/>  skriptimaahinen for patch)
<br/>x Fixed regression causing NOSCRIPT element and META refreshes 
<br/>  not to be emulated anymore on script-disabled pages (thanks
<br/>  barbaz and fatboy for reporting)

<h2>NoScript Security Suite 10.1.7.3rc1 - March 16, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.2rc1 - March 16, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7.1rc1 - March 16, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7rc4 - March 13, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7rc3 - March 12, 2018</h2>
[no description]

<h2>NoScript Security Suite 5.1.8.5rc3 - March 8, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7rc2 - March 8, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.7rc1 - March 4, 2018</h2>
v 10.1.7rc1
<br/>=============================================================
<br/>+ WebGL blocking now honored on scripted pages
<br/>x Quantum RC versions are hosted on <a rel="nofollow" href="http://secure.informaction.com">secure.informaction.com</a> 
<br/>  from now on due to beta channel deprecation on AMO

<h2>NoScript Security Suite 5.1.8.5rc2 - Feb. 25, 2018</h2>
[no description]

<h2>NoScript Security Suite 10.1.6.5 - Feb. 9, 2018</h2>
v 10.1.6.5
<br/>=============================================================
<br/>+ Context menu on web pages to access main UI
<br/>x Fixed UI regression showing only the two rightmost 
<br/>  components of IPv4 addresses
<br/>x [XSS] More specific and unobtrusive handling of <a rel="nofollow" href="http://window.name">window.name</a>
<br/>  sanitization
<br/>x Fixed "XSS User Choices" not being included in Export files

<h2>NoScript Security Suite 10.1.6.4 - Jan. 28, 2018</h2>
v 10.1.6.4
<br/>=============================================================
<br/>x Fixed race condition on XSS filter first load
<br/>x Fixed duplicate entries in UI on page reloads (thanks 8-bit
<br/>  for reporting)
<br/>+ Spinner for long sites lists in Options page
<br/>- Removed obsolete work-around for accidental TRUSTED preset
<br/>  wiping
<br/>x [UI] Fixed clicking on capability's label doesn't toggle
<br/>  the related checkbox (thanks dhouwn and olf for reporting)
<br/>x [XSS] Fixed false positives on badly encoded URLs (thanks
<br/>  sage11 for reporting)

<h2>NoScript Security Suite 5.1.8.4 - Jan. 28, 2018</h2>
v 5.1.6.4
<br/>=============================================================
<br/>x Fixed XSS false positive on some Facebook embeddings 
<br/>  (thanks barbaz for reporting)
<br/>x Fixed edge case origin checks for WebExtensions embedded in
<br/>  privileged documents
<br/>x Fixed DNT support initialization regression (thanks barbaz
<br/>  for reporting)
<br/>x [XSS] Fixed false positives on badly encoded URLs (thanks
<br/>  sage11 for reporting)
<br/>x Script Surrogates don't affect privileged URLs anymore,
<br/>  unless the noscript.surrogate.matchPrivileged about:config
<br/>  preference is set to true (thanks barbaz for RFE)
<br/>x [e10s] Fixed temporary permissions inter-process sync issue
<br/>  (thanks to the TorBrowser team for solution)

<h2>NoScript Security Suite 10.1.6.3 - Jan. 9, 2018</h2>
v 10.1.6.3
<br/>=============================================================
<br/>x Improved tooltip clarity
<br/>x Added version number to the browser action tooltip (thanks 
<br/>  therube for RFE)
<br/>x More restrictive domain matching in the main UI for "fake"
<br/>  TLDs, showing pseudo 2nd level domains containing one dot
<br/>x Domain matching now treats unknown no-dot domains (not in
<br/>  the public suffixes list) as TLDs everywhere (fix finally
<br/>  not overwritten by auto-generated tld.js)
<br/>x Fixed rc4 regression causing synchronized changes not to be
<br/>  persisted
<br/>x Smarter XSS popup behavior when reporting concurrent events
<br/>  from/to the same origins
<br/>x Fixed full breakage when sync storage is disabled
<br/>x Improved layout on small screens (less than 10cm wide)
<br/>x Moved preset customization into its own (more discoverable)
<br/>  global Options section, rather than embedded in assignment
<br/>x Improved validation of manual entries
<br/>x Needed capabilities highlighted also on short-hand domain
<br/>  matched entries inside the CUSTOM preset
<br/>x Domain matching now works also for manually entered TLDs
<br/>  and pseudo-TLDs, such as "<a rel="nofollow" href="http://gov.us">gov.us</a>" or "<a rel="nofollow" href="http://cloudflare.net">cloudflare.net</a>"

<h2>NoScript Security Suite 10.1.6.2 - Dec. 30, 2017</h2>
v 10.1.6.2
<br/>=============================================================
<br/>+ Individual temporary / permanent TRUSTED preset buttons
<br/>- Removed customizability of DEFAULT, TRUSTED and UNTRUSTED
<br/>  preset from the popup (reported as a major source of 
<br/>  confusion) while keeping it in the Options tab  
<br/>x Better display on mobile devices in portrait mode
<br/>x Fixed focus bug on mobile devices
<br/>x Fixed confirmation prompt when loading Site Info for the
<br/>  first time being ignored
<br/>x Fixed import feature failing on some full JSON "Classic"
<br/>  export files (thanks Floe for reporting)
<br/>x Fixed policy serialization bug causing temporary TRUSTED
<br/>  sites to be listed in the UNTRUSTED array as well (thanks
<br/>  pal1000 for reporting)
<br/>x Fixed action icon being disabled on Options tabs and not
<br/>  re-enabled when navigating away in the same tab (thanks
<br/>  geek99 for reporting)

<h2>NoScript Security Suite 10.1.6.1 - Dec. 23, 2017</h2>
v 10.1.6.1
<br/>=============================================================
<br/>x Reduced UI sizes in desktop version
<br/>x Work-around for Firefox bug preventing the Export button
<br/>  from working on non-Windows platforms

<h2>NoScript Security Suite 10.1.6 - Dec. 18, 2017</h2>
v 10.1.6
<br/>=============================================================
<br/>x [XSS] Improved sensitivity of JSON whitelisting (thanks 
<br/>  @SamuraiFoochs for reporting)
<br/>x [XSS] Improved specificity of nested URL checks (thanks
<br/>  @SamuraiFoochs for reporting)
<br/>x New configuration export implementation, more convoluted 
<br/>  but not requiring the "downloads" permission

<h2>NoScript Security Suite 10.1.5.9 - Dec. 17, 2017</h2>
v 10.1.5.9
<br/>=============================================================
<br/>x Fixed some XSS false positives
<br/>x Fixed out of scale rendering regression on high DPI screens

<h2>NoScript Security Suite 10.1.5.8 - Dec. 15, 2017</h2>
v 10.1.5.8
<br/>=============================================================
<br/>+ Fix for linux rendering performance issues
<br/>+ First "Quantum" release candidate with Android support
<br/>x Inverted order of domains vs full sites in popup

<h2>NoScript Security Suite 10.1.5.7 - Dec. 10, 2017</h2>
v 10.1.5.7
<br/>=============================================================
<br/>+ Settings import functionality, backward compatible with
<br/>  NoScript 5 formats
<br/>+ Settings export functionality
<br/>+ [XSS] The filter now automatically skips embedded documents
<br/>  which would normally be blocked
<br/>x Base domain matching now uses a single dot rule for unknown,
<br/>  private or "fake" TLDs (e.g. www.acme.corp → acme.corp)
<br/>x [XSS] Fixed regression from 10.1.5.6rc2 (thanks Masato
<br/>  Kinugava for reporting)
<br/>x Better feedback for errors in the policy's debug JSON view
<br/>  (thanks E-Raser for RFE)

<h2>NoScript Security Suite 5.1.8.3 - Dec. 10, 2017</h2>
v 5.1.8.3
<br/>=============================================================
<br/>x [XSS] Fixed regression (thanks Masato Kinugava for report)

<h2>NoScript Security Suite 10.1.5.6 - Dec. 8, 2017</h2>
v 10.1.5.6
<br/>=============================================================
<br/>- removed <a rel="nofollow" href="http://yandex.st">yandex.st</a> from default whitelist (see 
<br/>  <a rel="nofollow" href="https://forums.informaction.com/viewtopic.php?t=23655">https://forums.informaction.com/viewtopic.php?t=23655</a>)
<br/>x [XSS] Streamlined multiple unescaping standards handling
<br/>x [XSS] Generalized work-around for browser's URL parsing
<br/>  oddities (thanks Masato Kinugava for reporting)
<br/>+ "Temporarily set top-level sites to TRUSTED" option
<br/>x [XSS] Fixed user choices forgot across browser sessions

<h2>NoScript Security Suite 5.1.8.2 - Dec. 8, 2017</h2>
v 5.1.8.2
<br/>=============================================================
<br/>x [ABE] Restored Palemoon compatibility (thanks barbaz for 
<br/>  patch)
<br/>x [ABE] Fixed ruleset persistence (thanks barbaz for patch)
<br/>- removed <a rel="nofollow" href="http://yandex.st">yandex.st</a> from default whitelist (see 
<br/>  <a rel="nofollow" href="https://forums.informaction.com/viewtopic.php?t=23655">https://forums.informaction.com/viewtopic.php?t=23655</a>)
<br/>x [XSS] Streamlined multiple unescaping standards handling

<h2>NoScript Security Suite 10.1.5.5 - Dec. 4, 2017</h2>
v 10.1.5.5
<br/>=============================================================
<br/>+ [UI] Clicking on the domain label now opens the "Security 
<br/>  and privacy info" webpage (like middle click on "Classic").
<br/>+ "Reset to Defaults" button in the options window
<br/>x Improved content script initialization logic (thanks Rob Wu
<br/>  for suggestions)
<br/>x [XSS] Fixed 2nd level interactive bypass (thanks Masato 
<br/>  Kinugava for reporting)
<br/>x Fixed sites manually added from the Options textbox don't
<br/>  stick (thanks Just_Golem for reporting)

<h2>NoScript Security Suite 5.1.8.1 - Dec. 4, 2017</h2>
v 5.1.8.1
<br/>=============================================================
<br/>x [XSS] Fixed 2nd level interactive bypass (thanks Masato 
<br/>  Kinugava for reporting)

<h2>NoScript Security Suite 10.1.5.4 - Dec. 4, 2017</h2>
v 10.1.5.4
<br/>=============================================================
<br/>+ [UI] Clicking on the domain label now opens the "Security 
<br/>  and privacy info" webpage (like middle click on "Classic").
<br/>+ "Reset to Defaults" button in the options window
<br/>x Improved content script initialization logic (thanks Rob Wu
<br/>  for suggestions)
<br/>x [XSS] Fixed 2nd level interactive bypass (thanks Masato 
<br/>  Kinugava for reporting)
<br/>x Fixed sites manually added from the Options textbox don't
<br/>  stick (thanks Just_Golem for reporting)

<h2>NoScript Security Suite 10.1.5.3 - Dec. 3, 2017</h2>
v 10.1.5.3
<br/>=============================================================
<br/>x Fixed regression causing NoScript to ask to reload pages in
<br/>  order to show permissions more than once upon installation
<br/>- Removed most animations causing older system to lag when
<br/>  large permissions lists are displayed in Options

<h2>NoScript Security Suite 10.1.5.2 - Dec. 2, 2017</h2>
v 10.1.5.2
<br/>=============================================================
<br/>x Improved work-around for blank windows on Linux Firefox bug
<br/>x Fixed XSS false positives on POST requests without data

<h2>NoScript Security Suite 10.1.5.1 - Dec. 1, 2017</h2>
v 10.1.5.1
<br/>=============================================================
<br/>x Fixed regression from new "fail fast" XSS filter main loop,
<br/>  causing cross-site requests to Google to trigger false
<br/>  positives (thanks Steve M for reporting)

<h2>NoScript Security Suite 10.1.5 - Dec. 1, 2017</h2>
v 10.1.5
<br/>=============================================================
<br/>+ [XSS] Added "Always block requests from ... to ..." in XSS
<br/>  warning prompt
<br/>x [XSS] Fixed url decoding bug (thanks Masato Kinugawa for
<br/>  reporting)
<br/>x Fixed some blocked items not reported in the UI (thanks Bo
<br/>  Elam for reporting)
<br/>x Changed the CSP internal report URI to noscript-csp.invalid
<br/>  (thanks Tom Schuster  Mario Heiderich for RFE)
<br/>- Removed unused MSE detection code (thanks Rob Wu for
<br/>  reporting)

<h2>NoScript Security Suite 10.1.4 - Dec. 1, 2017</h2>
v 10.1.4
<br/>=============================================================
<br/>x Fixed script enablement feedback dependant on page's own 
<br/>  CSP (thanks Rob Wu for reporting)
<br/>x Fixed MSE detection injection using window.eval (thanks
<br/>  Rob Wu for reporting)
<br/>x Fixed window being resized and NoScript UI shown in a 
<br/>  separate popup when triggered on a maximized window
<br/>x General performance improvement by removing unnecessary
<br/>  asynchronous webRequest listeners

<h2>NoScript Security Suite 10.1.3 - Nov. 29, 2017</h2>
v 10.1.3
<br/>=============================================================
<br/>x Hotfix for wiped TRUSTED permissions
<br/>x Hotfix for NoScript failing to load if XSS was disabled in
<br/>  previous session

<h2>NoScript Security Suite 10.1.3c3 - Nov. 28, 2017</h2>
v 10.1.3rc3
<br/>=============================================================
<br/>x Fixed immutable permissions for TRUSTED and UNTRUSTED
<br/>  presets negating all the others (thanks Stefan Scholl for
<br/>  reporting)
<br/>x Work-around for Moz Bug #1402110 (thanks David Ross for
<br/>  reporting)
<br/>x Fixed XSS whitelist not being cleared from Options
<br/>x Fixed XSS whitelist trying to using sync even if disabled (
<br/>  thanks Rob Wu for reporting)

<h2>NoScript Security Suite 10.1.3c1 - Nov. 27, 2017</h2>
v 10.1.3rc1
<br/>=============================================================
<br/>+ Work-around for Firefox not displaying NOSCRIPT elements on
<br/>  pages where scripts are blocked by CSP
<br/>+ The Alt+Shift+N shortcut now opens the NoScript UI also on
<br/>  windows with no toolbars containing NoScript's icon
<br/>x "unsafe" (non-HTTPS) matching is now automatically selected
<br/>   on non-HTTPS pages (fixes the perception that you set a 
<br/>   site to TRUSTED and it reverted to DEFAULT)
<br/>x Full addresses are shown again to be choosen in UI, together 
<br/>  with base domains
<br/>x Better auto-reload logic
<br/>x Fixed NoScript back-end to work also if sync storage is 
<br/>  disabled (thanks Rob Wu for reporting)
<br/>x Fixed potential fingerprinting through placeholder icon
<br/>  (thanks Rob Wu for reporting)

<h2>NoScript Security Suite 10.1.2 - Nov. 22, 2017</h2>
v 10.1.2
<br/>=============================================================
<br/>+ Added "Revoke temporary permissions" button
<br/>+ Added "Temporarily allow all this page" button
<br/>x Simplified popup listing, showing base domains only (full
<br/>  origin URLs can still be entered in the Options window to
<br/>  further tweak permissions)
<br/>x Fixed UI not launching in Incognito mode
<br/>x Fixed changing permissions in the CUSTOM preset affecting
<br/>  the DEFAULT permissions sometimes
<br/>x Fixed UI almost unusable in High Contrast mode
<br/>x Fixed live bookmark feeds blocked if "fetch" permissions
<br/>  were not given
<br/>x Fixed background requests from other WebExtensions being
<br/>  blocked

<h2>NoScript Security Suite 10.1.1 - Nov. 20, 2017</h2>
10.1.1
<br/>=============================================================
<br/>+ First pure WebExtension release.
<br/>+ CSP-based first-party script script blocking
<br/>+ Active content blocking with DEFAULT, TRUSTED, UNTRUSTED and 
<br/>   CUSTOM (per site) presets
<br/>+ Extremely responsive XSS filter leveraging the webRequest asynchronous API
<br/>+ On-the-fly cross-site requests whitelisting
<br/>&nbsp;
<br/>Next to come: ClearClick and ABE (in the next few weeks).

<h2>NoScript Security Suite 5.1.7 - Nov. 17, 2017</h2>
5.1.7
<br/>=============================================================
<br/>x [Surrogate] Fixed regression breaking source matching in
<br/>  5.1.6 (thanks astian for reporting)

<h2>NoScript Security Suite 5.1.6 - Nov. 17, 2017</h2>
5.1.6
<br/>=============================================================
<br/>x [Fx58] Fixed complete breakage due to nsIPrefBranch changes
<br/>  in 58 (for Firefox Developer Edition users)

<h2>NoScript Security Suite 5.1.5 - Nov. 7, 2017</h2>
v 5.1.5
<br/>=============================================================
<br/>x Fixed content process cross-framescript leak (thanks
<br/>  dorando for patch)
<br/>x [ESR] Fixed bookmarklets not being executed (thanks Jim
<br/>  Thompson for reporting)

<h2>NoScript Security Suite 5.1.4 - Oct. 29, 2017</h2>
v 5.1.4
<br/>=============================================================
<br/>x [Nightly] Fixed Import/Export Options button
<br/>x Fixed bookmarlets broken when scripts globally allowed
<br/>  (thanks filip for reporting)
<br/>x [Tor Browser] Fixed jumping icon on updates (ticket #23968)
<br/>x [Surrogate] Better sandbox memory management
<br/>- Removed special Add-ons manager uninstall warning hooks

<h2>NoScript Security Suite 5.1.3 - Oct. 23, 2017</h2>
v 5.1.3
<br/>=============================================================
<br/>x [e10s] Fixed some bookmarklet / URL bar JavaScript emulation
<br/>  multi-process regressions
<br/>x [Palemoon] Fixed NoScript button position not customizable
<br/>  on the first window (thanks yes_noscript for reporting)
<br/>x Fixed bookmarklet execution subject to AllowURLBarJS too
<br/>x Fixed Palemoon urlbar breakage on browser restart
<br/>x [Whitelist] about:tabcrashed made mandatory (internal)

<h2>NoScript Security Suite 5.1.2 - Oct. 13, 2017</h2>
v 5.1.2
<br/>=============================================================
<br/>x Fixed allowing scripts on one tab blocking them in other (
<br/>  <a rel="nofollow" href="http://torproject.org">torproject.org</a> issue #23747, thanks cypherpunks for report)
<br/>x Fixed startup sequence
<br/>+ [Whitelist] about:tabcrashed added to default whitelist
<br/>x Added unlimitedStorage WebExtensions permissions for safer
<br/>  preferences migration
<br/>x Fixed some  restartless lifecycle quirks
<br/>x Fixed toolbar button position changes across upgrades
<br/>x Fixed NoScript release notes page shown upon restartless
<br/>  updates, rather than on next restart
<br/>x Fixed Tor Browser's extension preference overrides ignored
<br/>  by NoScript
<br/>x Fixed status bar not recognized on some browsers still
<br/>  supporting it
<br/>x Work-around for the Tor Browser preventing NoScript from
<br/>  resolving its own UI's XML entities

<h2>NoScript Security Suite 5.1.1 - Sept. 30, 2017</h2>
v 5.1.1
<br/>=============================================================
<br/>x Fixed regression breaking webworkers (e.g. on Protonmail)

<h2>NoScript Security Suite 5.1.0 - Sept. 29, 2017</h2>
v 5.1.0
<br/>=============================================================
<br/>x Fixed placeholders not shown in Fx 57 and above
<br/>x [WebExtension] Reduced legacy settings backup size
<br/>x [Nightly] Work-around for nsIDOMHTML* interfaces removal
<br/>+ Restartless (bootstrapped) desktop version, and most likely
<br/>  the last hybrid (embedded WebExtension) before the pure
<br/>  WebExtension release

<h2>NoScript Security Suite 5.0.10 - Sept. 11, 2017</h2>
v 5.0.10
<br/>=============================================================
<br/>x Fixed some moz-webextension: subrequests blocked in content
<br/>  blocking mode
<br/>- Removed whitelist and surrogate references to <a rel="nofollow" href="http://persona.org">persona.org</a>
<br/>x [Seamonkey] Fixed status bar visibility regression (thanks
<br/>  Mc for reporting)
<br/>x [Nightly] Fixed various XSS filter UI breakages
<br/>x [Nightly] Patched deprecated usages of nsIURI.path
<br/>x [XSS] Fixed false positive on <a rel="nofollow" href="http://amazonaws.com">amazonaws.com</a> (thanks Robby
<br/>  Stokoe for reporting)
<br/>x [Surrogate] New <a rel="nofollow" href="http://ampush.io">ampush.io</a> tracker surrogate (thanks barbaz)

<h2>NoScript Security Suite 5.0.9 - Aug. 21, 2017</h2>
v 5.0.9
<br/>=============================================================
<br/>x [WebExt] Make sure the embedded WebExtension cannot
<br/>  interfere with the legacy side beside preference migration
<br/>x [Nightly] Fixed breakage from bug 1390106
<br/>x [Nightly] Work-around for HTMLEmbedElement removal
<br/>x [Nightly] Fixed first run UI visibility check
<br/>x [XSS] Work-around for Google notifications false positive
<br/>x [Nightly] Fixed startup breakage
<br/>x [Surrogates] Fixed noisy google-analytics replacement
<br/>x [Nightly] Fixed view-source: breakage

<h2>NoScript Security Suite 5.0.8.1 - July 28, 2017</h2>
v 5.0.8.1
<br/>=============================================================
<br/>x [ABE] XHR matches both TYPE_XMLHTTPREQUEST and TYPE_FETCH
<br/>x [ABE] Updated INCLUSION types to match newest specific
<br/>  types from nsIContentType constants. OTHER still matches
<br/>  any type except "historically supported" ones (SCRIPT, CSS,
<br/>  IMAGE, OBJ, OBJSUB, MEDIA, FONT, SUBDOC, XBL, PING, XHR,
<br/>  DTD) for backward compatibility: please use
<br/>  UNKNOWN to match just TYPE_OTHER (i.e. request whose type
<br/>  is not specifically mapped yet by the nsIContentType API).
<br/>x [e10s] Fixed INCLUSION type marked as OTHER for any request
<br/>  when Electrolysis is enabled (thanks barbaz for reporting)
<br/>x [XSS] Fixed excessive recursion causing GC-related hangs on
<br/>  some ads-intensive websites (like <a rel="nofollow" href="http://der-postillion.de">der-postillion.de</a>)

<h2>NoScript Security Suite 5.0.7.1 - July 23, 2017</h2>
v 5.0.7.1
<br/>=============================================================
<br/>x [WebExt] Fixed incompatibility with Firefox 54
<br/>x [WebExt] Initiated preference migration via embedded
<br/>  WebExtension
<br/>x [e10s] Fixed HTTP redirection issues with e10s enabled
<br/>  (thanks PLD for reporting)
<br/>x [Surrogate] Updated googletag replacement (thanks barbaz)
<br/>x Fixed HTML5 Media documents blockage delay if no other
<br/>  embedded content is forbidden (thanks Georg Koppen for
<br/>  reporting)
<br/>x [XSS] Fixed bug causing false positives (thanks Georg
<br/>  Koppen for reporting)

<h2>NoScript Security Suite 5.0.6 - July 1, 2017</h2>
v 5.0.6
<br/>=============================================================
<br/>x [XSS] Fixed performance regression in handling of big JSON
<br/>  payloads causing the browser to freeze on loading pages
<br/>  with Facebook tracking subframes
<br/>x [Surrogates] Updated ga replacement (thanks barbaz)
<br/>x [L10n] Updated tr (thanks Volkan Gezer)
<br/>x [L10n] Updated de (thanks milupo)
<br/>x [XSS] Fixed regression in <a rel="nofollow" href="http://window.name">window.name</a> sanitization
<br/>  (thanks Gareth Heyes for reporting)
<br/>x [XSS] Work-around for Mavo-script operator translation side
<br/>  effects (thanks Gareth Heyes for reporting)

<h2>NoScript Security Suite 5.0.5 - May 29, 2017</h2>
v 5.0.5
<br/>=============================================================
<br/>x [XSS] Updated XSS filter with latest Gecko Atoms and ES
<br/>  features (thanks Maxim Rupp for reporting)
<br/>+ [XSS] Added countermeasures against XSS vectors exploiting
<br/>  Mavo-script template expressions (thanks Krzysztof Kotowicz
<br/>  and Gareth Heyes for reporting)

<h2>NoScript Security Suite 5.0.4 - May 11, 2017</h2>
v 5.0.4
<br/>=============================================================
<br/>+ [XSS] Added countermeasures against several vectors
<br/>  exploiting client-side JavaScript templating frameworks
<br/>  (thanks Krzysztof Kotowicz and Sebastian Lekies for their
<br/>  research)
<br/>x [XSS] Fixed e10s-related regression in <a rel="nofollow" href="http://window.name">window.name</a>
<br/>  sanitization (thanks Krzysztof Kotowicz for reporting)
<br/>x Fixed "Allow local links" breaking file:/// URL loading in
<br/>  Gecko 53 and above
<br/>x Fixed JSON viewer working only on JavaScript-enabled URLs

<h2>NoScript Security Suite 5.0.3 - April 21, 2017</h2>
v 5.0.3
<br/>=============================================================
<br/>x Fixed global JavaScript enablement for HTTPS sites breaking
<br/>  the UI (Tor ticket #21923)
<br/>+ noscript.webext.enabled preference to control embedded
<br/>  WebExtension startup
<br/>x Fixed XHR regression (thanks Oleksandr Popov for reporting)
<br/>x Fixed compatibility issues with some WebExtensions (thanks
<br/>  Oleksandr Popov for reporting)

<h2>NoScript Security Suite 5.0.2 - March 16, 2017</h2>
v 5.0.2
<br/>=============================================================
<br/>x Fixed thumbnails broken even if noscript.bgThumbs.allowed
<br/>  is true (thanks rick for reporting)
<br/>x [e10s] Restored absolutely positioned elements removal by
<br/>  mousedown + DEL key (broken by e10s)
<br/>x Absolutely positioned elements removal by mousedown + DEL
<br/>  key now working also on whitelisted pages (controlled by
<br/>  noscript.eraseFloatingElements about:config preference,
<br/>  thanks MegaWolf for RFE)
<br/>x Fixed blocked XHR requests in frames not reflected in the
<br/>  menu UI (thanks aocab and barbaz for reporting)
<br/>x [Locale] Improved nl translation (thanks Kris)

<h2>NoScript Security Suite 5.0.1 - March 7, 2017</h2>
v 5.0.1
<br/>=============================================================
<br/>x Fixed regression, some sites not being shown in UI
<br/>x Fixed recently blocked menu not working on e10s

<h2>NoScript Security Suite 5.0 - March 3, 2017</h2>
v 5.0
<br/>=============================================================
<br/>+ Embedded WebExtension
<br/>x Dramatically Improved UI synchronization performance impact
<br/>  on load-intensive web pages (thanks Rob Wu)
<br/>x [e10s] Fixed permissions out of sync when content processes
<br/>  are more than one (thanks Ian Fennel for report)
<br/>x [Surrogates] Update google-analytics replacement (thanks
<br/>  ng4never for reporting and barbaz for implementation)

<h2>NoScript Security Suite 2.9.5.3 - Jan. 17, 2017</h2>
[no description]

<h2>NoScript Security Suite 2.9.5.2 - Nov. 28, 2016</h2>
v 2.9.5.2
<br/>=============================================================
<br/>x Fixed Stylish editor breakage (thanks JustAnotherGuy for
<br/>  reporting
<br/>x Fixed media blocking delayed with Tor Browser's "Medium"
<br/>  Security Sider preset
<br/>x Fixed frame blocking issues
<br/>x Fixed top-level media loads issues
<br/>x Fixed apparent delay in menu UI feedback (thanks mechadon
<br/>  for reporting)
<br/>x Fixed some XSS filter over-sensitivity regressions
<br/>x Fixed "Allow local links" causing file:// URLs to fail
<br/>x [Locale] Updated nl (thanks Ton)

<h2>NoScript Security Suite 2.9.5.1 - Nov. 21, 2016</h2>
2.9.5.1
<br/>=============================================================
<br/>x Fixed some pages not loading on 1st attempt when e10s is
<br/>  enabled (thanks Semtex for reporting)
<br/>&nbsp;
<br/>2.9.5
<br/>=============================================================
<br/>+ Full e10s compatibility
<br/>x Fixed big whitelists being reset to default permissions on
<br/>  e10s-enabled browsers (thanks sabret00the and Internet User
<br/>  for reporting)
<br/>x Better fix for some embedding permissions issues (thanks
<br/>  barbaz for reporting)
<br/>x MediaSource blocking support (Tor Project)
<br/>x Better handling of media types loaded as top-level
<br/>  documents
<br/>x Declared (but untested) Palemoon support (thanks barbaz)
<br/>x [System Principal] included in the mandatory allowed list
<br/>x Fixed allow scripts globally requiring a restart (thanks
<br/>  FFreestyleRR for reporting
<br/>x Fixed embeddings autoreload on e10s-disabled browsers
<br/>^ TODO: MediaSource blocking support
<br/>x Improved autoreload responsiveness and precision
<br/>x Fixed IFrame over-blocking bug (thanks G113 for report)
<br/>x Fixed sites involved in background requests being not
<br/>  reported in the UI, even if intercepted and/or blocked (
<br/>  thanks GH113 for reporting)
<br/>x Fixed typo in PasteHandler (thanks barbaz for reporting)
<br/>x Fixed embedding-related automatic reload issues (thanks
<br/>  barbaz and tmeader for reporting)
<br/>x Fixed compatibility regression with Firefox 45
<br/>x [Surrogate] Fixed file:// replacements broken (thanks
<br/>  barbaz for reporting)
<br/>^ TODO: MediaSource blocking support
<br/>x Fixed typo in XSS filter breaking JSON cross-site requests
<br/>x Fixed automatic reload issues (thanks GH113 for reporting)
<br/>x Fixed UI not always synchronized on startup (thanks GH113
<br/>  for reporting)
<br/>x Fixed incompatibilities with older Firefox down to 45
<br/>  (thanks barbaz for reporting)
<br/>x Fixed automatic reload impossible to be disabled (thanks
<br/>  GH113 for reporting)
<br/>x Fixed UI initially not synced on new windows (thanks GH113
<br/>  for reporting)
<br/>x Fixed bug in secure cookie enforcement upgrading all the
<br/>  unsecure cookies on secure connections even if a secure
<br/>  cookie for the domain existed, increasing chances of
<br/>  incompatibilities (thanks PDL for reporting)
<br/>x Fixed escaping issues in the noscript.js preference file
<br/>  (thanks PDL for reporting)

<h2>NoScript Security Suite 2.9.0.14 - Aug. 8, 2016</h2>
v 2.9.0.14
<br/>=============================================================
<br/>x Fixed live bookmarks in Firefox 48 or above

<h2>NoScript Security Suite 2.9.0.13 - Aug. 1, 2016</h2>
v 2.9.0.13
<br/>=============================================================
<br/>x Added missing "s" in noscript.mandatory/about:feeds

<h2>NoScript Security Suite 2.9.0.12 - July 25, 2016</h2>
v 2.9.0.12
<br/>=============================================================
<br/>x Updated DNT implementation to match the most recent spec
<br/>  about navigator.doNotTrack values (thanks Francois Merier)
<br/>x [XSS] Better compatibility with Unionbank's website (thanks
<br/>  Brent for reporting)
<br/>x Fixed bug 1278735 (JavaScript disabled in private windows)
<br/>x Fixed JSON viewer not working
<br/>x about:feed in the mandatory whitelist to fix bug 1272139
<br/>x [XSS] Disable JavaScript on FTP-served pages when a
<br/>  potential  DOM XSS threat is detected (thanks Emanuel
<br/>  Bronshtein @e3amn2l for reporting)
<br/>x Fixed DOS through script-triggered ClickToPlay confirmation
<br/>  dialogs in a loop (thanks Emanuel Bronshtein @e3amn2l for
<br/>  reporting)
<br/>x Fixed placeholder links might be potentially used as XSS
<br/>  vectors if stars were properly aligned(thanks Emanuel
<br/>  Bronshtein @e3amn2l for reporting)
<br/>x [Surrogate] Updated <a rel="nofollow" href="http://google-analytics.com">google-analytics.com</a> replacement (
<br/>  thanks noscriptsplox)
<br/>x [XSS] Fixed regression (thanks Masato Kinugawa for report)

<h2>NoScript Security Suite 2.9.0.11 - April 6, 2016</h2>
v 2.9.0.11
<br/>=============================================================
<br/>x [XSS] Fixed infrastructure issue preventing one filter from
<br/>  being automatically synchronized with Mozilla's source code
<br/>  as designed (thanks .mario and Maxim Rupp for reporting)
<br/>x [XSS] Added filtering for a potential CSRF vector (thanks
<br/>  Masato Kinugawa for reporting)

<h2>NoScript Security Suite 2.9.0.10 - March 22, 2016</h2>
v 2.9.0.10
<br/>=============================================================
<br/>x Fixed placeholder activation in Gecko 45 and above

<h2>NoScript Security Suite 2.9.0.9 - March 20, 2016</h2>
v 2.9.0.9
<br/>=============================================================
<br/>x [XSS] Compatibility exception for the Printfriendly add-on
<br/>x Removed <a rel="nofollow" href="http://msn.com">msn.com</a> from the default whitelist, since it seems
<br/>  to be unable to support HTTPS consistently

<h2>NoScript Security Suite 2.9.0.7 - March 19, 2016</h2>
v 2.9.0.7
<br/>=============================================================
<br/>x [HTTPS] Removed legacy redirection methods when redirectTo()
<br/>  is available in HTTP channels, fixing YouTube embedding
<br/>  problem
<br/>x Replaced newChannel() with newChannel2() on Gecko 48

<h2>NoScript Security Suite 2.9.0.6 - March 18, 2016</h2>
v 2.9.0.6
<br/>=============================================================
<br/>x [HTTPS] Limit httpsDefWhitelist effect to document loads
<br/>x [XSS] Reduced eval aliasing checks false positives

<h2>NoScript Security Suite 2.9.0.5 - March 16, 2016</h2>
v 2.9.0.5
<br/>=============================================================
<br/>x [XSS] Improved detection of computed property accessors
<br/>  (thanks Emanuel Bronshtein @e3amn2l for report)
<br/>x [HTTPS] Fixed httpsDefWhitelist breaking OCSP (thanks al_9x
<br/>  for reporting)
<br/>x [HTTPS] Fixed httpsDefWhitelist breaking <a rel="nofollow" href="http://yui.yahooapis.com">yui.yahooapis.com</a>
<br/>  (thanks Rob Greenberg for reporting
<br/>x [XSS] Fixed OpenID-related false positive
<br/>x Restored Nightly compatibility broken by bug 1253016
<br/>x Fixed regression in HTTPS enforcing exceptions
<br/>x [Surrogate] Updated googletag replacement (thanks barbaz)
<br/>x [Surrogate] Updated ga replacement (thanks barbaz)
<br/>x [XSS] Improved replacement for dangerous keywords/built-in
<br/>  properties (thanks Emanuel Bronshtein @e3amn2l for report)
<br/>x [HTTPS] noscript.httpsDefWhitelist option to automatically
<br/>  upgrade to HTTPS sites found in the default whitelist
<br/>  (enabled by default, thanks  Mazin Amhed for reporting)

<h2>NoScript Security Suite 2.9.0.4 - Feb. 10, 2016</h2>
v 2.9.0.4
<br/>=============================================================
<br/>x Fixed InjectionChecker over-optimization bug (thanks Maxim
<br/>  Rupp for reporting)
<br/>x [l10n] Updated ar (thanks Nassim Dhaher)

<h2>NoScript Security Suite 2.9.0.3 - Feb. 1, 2016</h2>
v 2.9.0.3rc2
<br/>=============================================================
<br/>x Fixed NoScript blocking WebExtensions by default
<br/>x Fixed XSS filter JSON sanitization bug (thanks Maxim Rupp
<br/>  for reporting)

<h2>NoScript Security Suite 2.9.0.2 - Jan. 8, 2016</h2>
v 2.9.0.2
<br/>=============================================================
<br/>x Version bump to work around AMO's 404 when serving 2.9.0.1 
<br/>&nbsp;
<br/>v 2.9.0.1
<br/>=============================================================
<br/>x Replaced "for each ()" with "for (... of ...)"
<br/>x Removed array comprehension usage
<br/>- Removed compatibility with Gecko lt 13
<br/>x Fixed conflict w/ KeeFox + CTR (thanks amloessb for report)
<br/>  <a rel="nofollow" href="https://forums.informaction.com/viewtopic.php?p=80581">https://forums.informaction.com/viewtopic.php?p=80581</a>

<h2>NoScript Security Suite 2.9 - Dec. 31, 2015</h2>
v 2.9rc1
<br/>=============================================================
<br/>x [e10s] Fixed "Temporarily allow top-level sites by default"
<br/>  broken by Electrolysis
<br/>x Fixed "key.revokeTemp" preference management bug (thanks
<br/>  palme for patch)

<h2>NoScript Security Suite 2.7 - Nov. 22, 2015</h2>
v 2.7
<br/>=============================================================
<br/>- Removed <a rel="nofollow" href="http://informaction.com">informaction.com</a>, <a rel="nofollow" href="http://flashgot.net">flashgot.net</a> and <a rel="nofollow" href="http://maone.net">maone.net</a> from
<br/>  the default whitelist to reduce the potential attack
<br/>  surface
<br/>- Removed vestigial noscript.forbidData preference
<br/>x Fixed shorthands not checked for ftp(s) sites (thanks
<br/>  Leon Winter for patch)
<br/>x [Surrogate] Fixed googletag replacement (thanks barbaz)
<br/>x Fixed incompatibility with importScript() from workers
<br/>  breaking new reCaptcha implementation (thanks Mr_KrzYch00
<br/>  for reporting)

<h2>NoScript Security Suite 2.6.9.39 - Oct. 19, 2015</h2>
v 2.6.9.39
<br/>=============================================================
<br/>x Work-around for a XSS "false positive" caused by <a rel="nofollow" href="http://nwolb.com">nwolb.com</a>
<br/>  passing Javascript code across subdomains in <a rel="nofollow" href="http://window.name">window.name</a>
<br/>  (thanks Sagiv Masvari for reporting)

<h2>NoScript Security Suite 2.6.9.38 - Oct. 8, 2015</h2>
v 2.6.9.38
<br/>=============================================================
<br/>x Fixed breakage due to const declarations behavior changes
<br/>  in latest Firefox nightlies (thanks to all the people in
<br/>  <a rel="nofollow" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1212707)">https://bugzilla.mozilla.org/show_bug.cgi?id=1212707)</a>

<h2>NoScript Security Suite 2.6.9.37 - Sept. 28, 2015</h2>
v 2.6.9.37
<br/>=============================================================
<br/>x Fixed bug: launching a bookmarklet on about:newTab caused
<br/>  allow scripts globally for that tab (thanks James Strange
<br/>  for reporting)
<br/>x [L10n] Updated French translation (thanks Syl)
<br/>x Fixed NOSCRIPT element hidden on Javascript-disabled pages
<br/>  (moz bug 1208818)
<br/>x [Surrogate] enhanced <a rel="nofollow" href="http://gogletags.com">gogletags.com</a> replacement (thanks
<br/>  therube)
<br/>x Fixed subtle bug in load context association causing an
<br/>  origin mismatch in one corner case (thanks Gareth Heyes
<br/>  for reporting)

<h2>NoScript Security Suite 2.6.9.36 - Aug. 20, 2015</h2>
v 2.6.9.36
<br/>=============================================================
<br/>x [L10n] Fixed typo in nb-NO (thanks Mikkel H.)
<br/>x [e10s] Fixed top-level site auto-whitelisting broken
<br/>x [e10s] Fixed MozBug 1196477 (crash with allowLocalLinks)
<br/>x Shorthands reliability improvements
<br/>x [ClearClick] fixed console spam due to missing XPCOM
<br/>  interfaces for HTML elements
<br/>x In order to help Netflix users with the new video delivery
<br/>  system, users who have <a rel="nofollow" href="http://netflix.com">netflix.com</a> already in their
<br/>  whitelist get https://*.nflxvideo.net whitelisted as
<br/>  well on upgrade

<h2>NoScript Security Suite 2.6.9.35 - Aug. 12, 2015</h2>
v 2.6.9.35
<br/>=============================================================
<br/>x [Surrogate] <a rel="nofollow" href="http://googletagservices.com">googletagservices.com</a> replacement now supports
<br/>  custom googletag objects (thanks barbaz)
<br/>x [Surrogate] fixed surrogates stopped working on older
<br/>  Gecko versions (thanks barbaz)
<br/>x [XSS] Work-around for false positive on some Yahoo! URLs
<br/>x Corrected mistyped about:pocket-saved whitelist entry
<br/>x Fixed race condition in ABE options observer causing
<br/>  l.getRowCount() console spam

<h2>NoScript Security Suite 2.6.9.34 - Aug. 2, 2015</h2>
v 2.6.9.34
<br/>=============================================================
<br/>x [Surrogate] Fixed a bug preventing some replacements from
<br/>  running
<br/>x [XSS] Fixed over-optimized JSON and dots erasure allowing
<br/>  for a filter bypass in specific (and likely rare)
<br/>  circumstances (thanks Gareth Heyes for reporting)

<h2>NoScript Security Suite 2.6.9.33 - July 29, 2015</h2>
v 2.6.9.33
<br/>=============================================================
<br/>x [XSS] Fixed bug in minimal inline JavaScript fragment
<br/>  detection (thanks Frederik Braun for reporting)
<br/>x [L10n] Updated Russian (thanks fatboy).
<br/>x [Surrogate] fixed scope conflicts caused by the $S() object
<br/>  replacement wrapper (e.g. with some EA games)

<h2>NoScript Security Suite 2.6.9.32 - July 26, 2015</h2>
v 2.6.9.32
<br/>=============================================================
<br/>+ Added domains required for Netflix playback to the default
<br/>  whitelist
<br/>x Fixed inline script blocking broken by latest Nightlies
<br/>x Fixed NOSCRIPT elements not being shown in script-blocked
<br/>  pages on Firefox betas
<br/>x [Surrogate] shimmed or replaced code causing deprecations
<br/>x [Surrogate] updated googletag replacement (thanks barbaz)
<br/>x [XSS] Fixed regression in minimal inline JavaScript
<br/>  fragment detection (thanks Gareth Heyes for reporting)
<br/>x Fixed edge case causing JavaScript redirections detection
<br/>  to fail on <a rel="nofollow" href="http://qklnk.co/">http://qklnk.co/</a> (thanks Jess Hampshire for RFE)

<h2>NoScript Security Suite 2.6.9.31 - July 15, 2015</h2>
v 2.6.9.31
<br/>=============================================================
<br/>x [XSS] Fixed attribute injection checks regression (thanks
<br/>  Maxim Rupp and .mario of Cure53 for reporting)

<h2>NoScript Security Suite 2.6.9.30 - July 9, 2015</h2>
v 2.6.9.30
<br/>=============================================================
<br/>x Fixed noscript.allowWhitelistUpdates preference being
<br/>  ignored
<br/>+ Filtering out whitelist additions not required by the
<br/>  the specific current browser type and version
<br/>+ Added about:pocket-save and about:pocket-signup to the
<br/>  default whitelist
<br/>x More restrictive and accurate INCLUSION type check   (thanks
<br/>  Meee for reporting)
<br/>x [XSS] Further invalid characters optimization refinement
<br/>  (thanks Mathias Karlsson for reporting)
<br/>x [XSS] Fixed XML stripping optimization to prevent inline
<br/>  injections (thanks Mathias Karlsson for reporting)
<br/>x Default whitelist maintenance: removed <a rel="nofollow" href="http://prototypejs.org">prototypejs.org</a>,
<br/>  <a rel="nofollow" href="http://cdnjs.cloudflare.com">cdnjs.cloudflare.com</a>; restored <a rel="nofollow" href="http://maps.googleapis.com">maps.googleapis.com</a>
<br/>x [XSS] Updated inline event handlers related code preventing
<br/>  potential 2nd order injections on very badly coded websites
<br/>  (thanks Mathias Karlsson for reporting)

<h2>NoScript Security Suite 2.6.9.29 - July 1, 2015</h2>
v 2.6.9.29
<br/>=============================================================
<br/>x [XSS] Improved specificity of invalid characters
<br/>  optimization to remove a string literal breaking detection
<br/>  bypass (thanks Mathias Karlsson for reporting)

<h2>NoScript Security Suite 2.6.9.28 - June 30, 2015</h2>
v 2.6.9.28
<br/>=============================================================
<br/>x Narrowed <a rel="nofollow" href="http://googleapis.com">googleapis.com</a> default whitelist entry to
<br/>  <a rel="nofollow" href="http://ajax.googleapis.com">ajax.googleapis.com</a>
<br/>x [Surrogate] Updated <a rel="nofollow" href="http://gigya.com">gigya.com</a> and <a rel="nofollow" href="http://2mdn.net">2mdn.net</a> replacements
<br/>  (thanks saaib)

<h2>NoScript Security Suite 2.6.9.27 - June 17, 2015</h2>
v 2.6.9.27
<br/>=============================================================
<br/>x Fixed media elements being blocked on first (uncached)
<br/>  request (thanks RobertDrew for reporting)
<br/>+ noscript.middlemouse_temp_allow_main_site about:config
<br/>  preference to control whether middle-clicking the toolbar
<br/>  button should allow current top document's site (thanks
<br/>  barbaz)
<br/>x [L10n] Updated Belarusian (thanks Dzmitry Drazdou)
<br/>+ Default whitelist retroactive removal ability
<br/>x Removed <a rel="nofollow" href="http://vjs.zendcdn.net">vjs.zendcdn.net</a> from the default whitelist

<h2>NoScript Security Suite 2.6.9.26 - May 29, 2015</h2>
v 2.6.9.26
<br/>=============================================================
<br/>x Extended the redirectTo() safety net for to all the internal
<br/>  redirections
<br/>x Work-around for redirectTo() breaking Flash plugin
<br/>  subrequests
<br/>x Got ChannelReplacement backed by HTTPChannel.redirectTo()
<br/>  whenever possible (should fix moz-bug 1153256 for good)
<br/>x Fixed double redirection in HTTPS enforcing

<h2>NoScript Security Suite 2.6.9.25.1-signed - May 23, 2015</h2>
v 2.6.9.25
<br/>=============================================================
<br/>x Fixed regression preventing HTTPS enforcing exceptions from
<br/>  being honored
<br/>&nbsp;
<br/>v 2.6.9.24
<br/>=============================================================
<br/>x Fix for intermittent crashes on older Gecko versions

<h2>NoScript Security Suite 2.6.9.23.1-signed - May 22, 2015</h2>
v 2.6.9.23
<br/>=============================================================
<br/>x Work-around for moz-bug 1167371
<br/>x Fixed fatal regression on Firefox 34 and below
<br/>x Improved backward compatibility
<br/>x Work-around for anonymized plugin subrequests being vetoed
<br/>  by channel event sink
<br/>x Fixed backward compatibility PopupBoxObject shim
<br/>x [E10s] Fixed cascading permissions broken when checks are
<br/>  performed cross-process
<br/>x [Surrogate] Removed deprecated "for each" constructs from
<br/>  replacements
<br/>x [L10n] Updated ru-RU (thanks negodnik)
<br/>x Tentative fix for Bug 1153256 (thanks Dragana Damjanovic)
<br/>+ Added about:preferences to the mandatory whitelist
<br/>- Removed legacy STS support
<br/>+ [Surrogate] <a rel="nofollow" href="http://2mdn.net">2mdn.net</a> inclusion replacement (thanks barbaz)
<br/>+ [E10s] Restored inline JavaScript blocking

<h2>NoScript Security Suite 2.6.9.22.1-signed - April 20, 2015</h2>
v 2.6.9.22
<br/>=============================================================
<br/>+ [Surrogate] Generalized OWASP antiClickjacking replacement
<br/>  (thanks barbaz for RFE)
<br/>+ [Surrogate] Wordpress scriptless site auto-show replacement
<br/>+ <a rel="nofollow" href="http://bootstrapcdn.com">bootstrapcdn.com</a> in default whitelist

<h2>NoScript Security Suite 2.6.9.21.1-signed - April 7, 2015</h2>
v 2.6.9.21
<br/>=============================================================
<br/>+ Added "mediasource:" to the mandatory whitelist (Moz-Bug
<br/>  1151638)
<br/>x [Surrogate] Updated <a rel="nofollow" href="http://googletagservices.com">googletagservices.com</a> replacement
<br/>  (thanks barbaz)
<br/>x Better compatibility with SDK-based add-ons using data:
<br/>  URIs (thanks Mingyi Liu for report)

<h2>NoScript Security Suite 2.6.9.20.1-signed - March 31, 2015</h2>
v 2.6.9.20rc2
<br/>=============================================================
<br/>x Improved "Recently blocked sites..." recording
<br/>x Fixed inconsistencies in data: URIs handling (thanks barbaz
<br/>  for reporting)

<h2>NoScript Security Suite 2.6.9.19.1-signed - March 20, 2015</h2>
v 2.6.9.19
<br/>=============================================================
<br/>+ [Surrogate] .gigya.com replacement provided by barbaz
<br/>+ [Surrogate] <a rel="nofollow" href="http://js.stripe.com">js.stripe.com</a> replacement provided by barbaz
<br/>+ Improved usability of new Yahoo! video activation (thanks
<br/>  Glenn for reporting)
<br/>+ Added <a rel="nofollow" href="http://googlevideo.com">googlevideo.com</a> to the default whitelist because it's
<br/>  now required to play Youtube movies (thanks barbaz for RFE)

<h2>NoScript Security Suite 2.6.9.18.1-signed - March 13, 2015</h2>
v 2.6.9.18
<br/>=============================================================
<br/>x Fixed restrictSubdocScripts/globalHTTPSWhitelist
<br/>  interaction issue (thanks Tor Project for report)
<br/>x Fixed regression always disabling scripts whenever site's
<br/>  host name is a IPv6 literal (thanks  ipv6user for report)
<br/>x Fixed menu automatic disappearance on mouse exit broken by
<br/>  Firefox 36 changes (thanks randavis, cumdacon and barbaz
<br/>  for report)

<h2>NoScript Security Suite 2.6.9.17.1-signed - March 8, 2015</h2>
v 2.6.9.17
<br/>=============================================================
<br/>x Fixed cascadePermissions/globalHTTPSWhitelist interaction
<br/>  issue with IFRAMEs (thanks Tor Project for report)
<br/>x Fixed cascadePermissions being enforced also if the top
<br/>  document is implicitly allowed by the globalHTTPSWhitelist
<br/>  policy, rather than explicitly whitelisted, causing HTTP
<br/>  subdocument and scripts to be unintendendly allowed when
<br/>  the top document is HTTPS (thanks Tor Project for report)
<br/>x [Surrogate] Update Google Analytics replacement (thanks
<br/>  barbaz)

<h2>NoScript Security Suite 2.6.9.16.1-signed - March 1, 2015</h2>
v 2.6.9.16
<br/>=============================================================
<br/>+ [Surrogate] Updated Gravatar surrogate (thanks barbaz)
<br/>+ Additional HTML sanitization when pasting rich text into
<br/>  content-editable elements (thanks .mario for RFE)
<br/>+ Introduced framework for E10s migration, starting with new
<br/>  features and fixes
<br/>x Removed deprecated let () expressions from the code base

<h2>NoScript Security Suite 2.6.9.15.1-signed - Feb. 19, 2015</h2>
v 2.6.9.15
<br/>=============================================================
<br/>+ Fixed regression in 2.6.9.12 causing data: URI documents
<br/>  to be scripting-enabled (thanks GOF for tweet)

<h2>NoScript Security Suite 2.6.9.14.1-signed - Feb. 18, 2015</h2>
v 2.6.9.14
<br/>=============================================================
<br/>+ [Surrogate] OWASP legacy Javascript-based "antiClickjack"
<br/>  protection surrogate to unhide "protected" pages when
<br/>  scripting is disabled (thanks barbaz)
<br/>+ Restored noscript.forbidXHR functionality trying to make it
<br/>  more web-compatible (thanks barbaz for RFE)

<h2>NoScript Security Suite 2.6.9.13.1-signed - Feb. 11, 2015</h2>
v 2.6.9.13
<br/>=============================================================
<br/>x [XSS] Fixed bugs in comment stripping optimization (thanks
<br/>  Masato Kinugawa for reporting)
<br/>x [XSS] Better protection against some ES6 attacks (thanks
<br/>  Masato Kinugawa for reporting)
<br/>- Removed support for  XMLHttpRequest blocking
<br/>  (noscript.forbidXHR preference). The same functionality,
<br/>  if really needed, can still be achieved through ABE anyway.

<h2>NoScript Security Suite 2.6.9.12.1-signed - Feb. 4, 2015</h2>
v 2.6.9.12
<br/>=============================================================
<br/>x Fixed origin checking bug causing sandboxed IFRAMEs to have
<br/>  scripting always disabled (thanks Ellad Tadmor for report)

<h2>NoScript Security Suite 2.6.9.11.1-signed - Jan. 16, 2015</h2>
v 2.6.9.11
<br/>=============================================================
<br/>x [Surrogate] microsoftSupport surrogate to force the content
<br/>  to be shown if scripts are disabled (thanks thunderscript)
<br/>x Check private browsing against chrome rather than content
<br/>  windows (prevents annoying warning console messages)

<h2>NoScript Security Suite 2.6.9.10.1-signed - Dec. 25, 2014</h2>
v 2.6.9.10
<br/>=============================================================
<br/>x Fixed regression: permanently allow a web site erasing
<br/>  temporary whitelist items (thanks smersh for reporting)
<br/>x Fixed private windows detection for UI adaptation broken in
<br/>  SeaMonkey (thanks barbaz for reporting)
<br/>x Made the Permanent "allow" commands in private windows'
<br/>  checkbox look and behave like the other options in the
<br/>  "Appearance" tab, i.e. controlling the visibility of the
<br/>  menu item by the same name

<h2>NoScript Security Suite 2.6.9.9.1-signed - Dec. 19, 2014</h2>
v 2.6.9.9
<br/>=============================================================
<br/>x Updated GPL.txt and NoScript_License.txt with current FSF
<br/>  information (thanks Thomas Spura for reporting)
<br/>x Fixed regression causing "Revoke temporary permissions"
<br/>  gitches (thanks barbaz for reporting)
<br/>x Moved the Permanent "allow" commands in private windows'
<br/>  menu toggle next to the 'Options' command

<h2>NoScript Security Suite 2.6.9.8.1-signed - Dec. 16, 2014</h2>
v 2.6.9.8
<br/>=============================================================
<br/>+ 'Permanent "allow" commands in private windows' preference
<br/>  in NoScript Options|Appearance (inverse of
<br/>  noscript.volatilePrivatePermissions)
<br/>+ 'Permanent "allow" commands in private windows' toggle
<br/>  in NoScript menu while in Private Browsing mode, controlled
<br/>  by noscript.showVolatilePrivatePermissionsToggle
<br/>x Fixed regression in Cascade Permissions mode (thanks Kitty
<br/>  Box for reporting)
<br/>+ Fixed whitelisting regression on Gecko 25 and below (e.g.
<br/>  Palemoon)
<br/>+ Actually prevent temporary whitelist items from being saved
<br/>  in prefs (thanks to Mike Perry)

<h2>NoScript Security Suite 2.6.9.7.1-signed - Dec. 15, 2014</h2>
v 2.6.9.7
<br/>=============================================================
<br/>x Fixed inconsistencies in the globalHttpsWhitelist option
<br/>  implementation (thanks Mike Perry for reporting)
<br/>+ Volatile temporary whitelist, never gets saved to disk
<br/>  (thanks to Tor Project for sponsorship)
<br/>+ Never show permanent whitelist modifying commands when in
<br/>  private mode, unless the noscript.volatilePrivatePermissions
<br/>  preference is false (thanks to Tor Project for sponsorship)
<br/>+ noscript.allowWhitelistUpdate preference to control whether
<br/>  NoScript should be able to tweak the whitelist on version
<br/>  updates when the 3rd party requirements for an already
<br/>  whitelisted website change (thanks Thencent for RFE)

<h2>NoScript Security Suite 2.6.9.6.1-signed - Dec. 4, 2014</h2>
v 2.6.9.6
<br/>=============================================================
<br/>+ Built-in force HTTPS list, seeded with <a rel="nofollow" href="http://www.youtube.com">www.youtube.com</a>
<br/>x Work-around for bogus Youtube embedded frame activation
<br/>  patterns (thanks al_9x for reporting)
<br/>x Fixed bookmarklet execution regression in older Firefox
<br/>  versions (thanks 5keeve for reporting)
<br/>x Fixed subdocuments of a [System Principal] page not being
<br/>  allowed when they should in cascade permission modes (
<br/>  thanks hjkl for reporting)

<h2>NoScript Security Suite 2.6.9.5.1-signed - Nov. 24, 2014</h2>
v 2.6.9.5
<br/>=============================================================
<br/>x Fixed memory leak when a top-level browser window is closed
<br/>  (thanks cks for reporting)
<br/>x [XSS] compatibility tweak for <a rel="nofollow" href="http://swisspost.ch">swisspost.ch</a>
<br/>x Miscellaneous HTTPS URLs lockdown
<br/>+ Support for full-encrypted <a rel="nofollow" href="https://noscript.net">https://noscript.net</a>
<br/>x Updated Twitter surrogate (thanks ozjuggler and barbaz)
<br/>x Work-around for thumbnail generation protection being
<br/>  broken by some add-ons
<br/>x Fully disable background processed thumbnail generation
<br/>  unless noscript.bgThumbs.allowed about:config preference
<br/>  is set to true
<br/>x Control JavaScript enabled in background thumbail
<br/>  generation through the noscript.bgThumbs.disableJS
<br/>  about:config preference
<br/>+ Forcing remote browsers used for thumbnail generation to
<br/>  disable JavaScript (thanks vpoint for reporting)
<br/>+ [Surrogate] Invodo dummy replacement (thanks barbaz)

<h2>NoScript Security Suite 2.6.9.4.1-signed - Nov. 15, 2014</h2>
v 2.6.9.4
<br/>=============================================================
<br/>+ Added <a rel="nofollow" href="http://vimeocdn.com">vimeocdn.com</a> as a <a rel="nofollow" href="http://vimeo.com">vimeo.com</a> dependency if already
<br/>  whitelisted
<br/>+ [Surrogate] Enabling <a rel="nofollow" href="http://imgserve.com">imgserve.com</a> age verification button
<br/>  even if JavaScript is disabled
<br/>x Fixed IP6 to IP4 mapping bug (thanks stack / inventati)

<h2>NoScript Security Suite 2.6.9.3.1-signed - Oct. 23, 2014</h2>
v 2.6.9.3
<br/>=============================================================
<br/>x More accurate referrer checks for some edge cases (thanks
<br/>  AlbertMTom for reporting)
<br/>x [ABE] More restrictive local IP checks (thanks AlbertMTom
<br/>  for reporting)
<br/>+ More permissive AddressMatcher IP parser
<br/>+ [XSS] Improved sensitivity (thanks Masato Kinugawa)

<h2>NoScript Security Suite 2.6.9.2.1-signed - Oct. 18, 2014</h2>
v 2.6.9.2
<br/>=============================================================
<br/>+ [XSS] Improved sensitivity (thanks Masato Kinugawa)

<h2>NoScript Security Suite 2.6.9.1.1-signed - Oct. 13, 2014</h2>
v 2.6.9.1
<br/>=============================================================
<br/>+ [XSS] focus-based exfiltration protection (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x [XSS] Fixed false positive in risky operators detection
<br/>  (thanks Roman Vock for reporting)

<h2>NoScript Security Suite 2.6.9.1-signed - Oct. 5, 2014</h2>
v 2.6.9
<br/>=============================================================
<br/>+ [XSS] Improved location-based exfiltration protection
<br/>  (thanks Masato Kinugawa for reporting)
<br/>+ [Surrogate] <a rel="nofollow" href="http://login.person.org">login.person.org</a> inclusion (thanks barbaz)
<br/>x [XSS] Fixed 2.6.8.43 regressions
<br/>x [XSS] Improved specificity for eval-like patterns
<br/>+ Switched to a treeview for faster management of very long
<br/>  whitelists (thanks barbaz for patch)
<br/>x Tentative work-around for potential performance problems
<br/>  reportedly related to Australis support
<br/>  
<br/>v 2.6.9rc4
<br/>=============================================================
<br/>+ [XSS] Fixed bug in location-based exfiltration protection
<br/>  (thanks Masato Kinugawa for reporting)
<br/>&nbsp;
<br/>v 2.6.9rc3
<br/>=============================================================
<br/>+ [XSS] Improved location-based exfiltration protection
<br/>  (thanks Masato Kinugawa for reporting)
<br/>  
<br/>v 2.6.9rc2
<br/>=============================================================
<br/>+ [Surrogate] <a rel="nofollow" href="http://login.person.org">login.person.org</a> inclusion (thanks barbaz)
<br/>x [XSS] Fixed 2.6.8.43 regressions
<br/>x [XSS] Improved specificity for eval-like patterns
<br/>&nbsp;
<br/>v 2.6.9rc1
<br/>=============================================================
<br/>+ Switched to a treeview for faster management of very long
<br/>  whitelists (thanks barbaz for patch)
<br/>x Tentative work-around for potential performance problems
<br/>  reportedly related to Australis support
<br/>x [XSS] Fixed 2.6.8.43 regressions

<h2>NoScript Security Suite 2.6.8.43.1-signed - Sept. 27, 2014</h2>
v 2.6.8.43
<br/>=============================================================
<br/>x [XSS] Protection against some exfiltration attacks based on
<br/>  arithmetic operators (thanks Masato Kinugawa and File
<br/>  Descriptor AKA XSS Jigsaw for reporting)

<h2>NoScript Security Suite 2.6.8.42.1-signed - Sept. 22, 2014</h2>
v 2.6.8.42rc3
<br/>=============================================================
<br/>+ User-facing "Reload the current tab only" option
<br/>x Fixed subtle bug in ScriptSurrogate.replaceScript()
<br/>x Fixed HTTPS and cascading permission policies not applying
<br/>  to XHR and XBL checks
<br/>x [XSS] Fixed ES6-based bypasses (thanks Masato Kinugava for
<br/>  reporting)
<br/>+ [XSS] <a rel="nofollow" href="http://window.name">window.name</a> exfiltration protection (thanks Masato
<br/>  Kinugava for reporting)
<br/>x Fixed script sources enumeration breakage in Firefox 35
<br/> (Moz Bug 1068508, thanks Octoploid for reporting)
<br/>&nbsp;
<br/> v 2.6.8.42rc3
<br/>=============================================================
<br/>+ User-facing "Reload the current tab only" option
<br/>x [XSS] Improved <a rel="nofollow" href="http://window.name">window.name</a> exfiltration protection
<br/>  (thanks Masato Kinugava for reporting)
<br/>&nbsp;
<br/>v 2.6.8.42rc2
<br/>=============================================================
<br/>x Fixed subtle bug in ScriptSurrogate.replaceScript()
<br/>x Fixed HTTPS and cascading permission policies not applying
<br/>  to XHR and XBL checks
<br/>x [XSS] Fixed ES6-based bypasses (thanks Masato Kinugava for
<br/>  reporting)
<br/>+ [XSS] <a rel="nofollow" href="http://window.name">window.name</a> exfiltration protection (thanks Masato
<br/>  Kinugava for reporting)
<br/>&nbsp;
<br/>v 2.6.8.42rc1
<br/>=============================================================
<br/>x Fixed script sources enumeration breakage in Firefox 35
<br/> (Moz Bug 1068508, thanks Octoploid for reporting)

<h2>NoScript Security Suite 2.6.8.41.1-signed - Sept. 11, 2014</h2>
v 2.6.8.41
<br/>=============================================================
<br/>x Improved Australis toolbar compatibility (thanks Quicksaver
<br/>  for help)
<br/>x Added "Always ask" checkbox to the removal confirmation
<br/>  dialog (thanks agaxwtmp for RFE)
<br/>x Fixed Options dialog broken on ancient Firefox versions
<br/>x [XSS] Fixed false positive within *.adxns.com

<h2>NoScript Security Suite 2.6.8.40.1-signed - Sept. 1, 2014</h2>
v 2.6.8.40
<br/>=========================================================================
<br/>x Fixed regression causing script inclusions with non-standard ports to
<br/>  be always blocked
<br/>x [ABE] Improved ruleset editing UI (thanks barbaz for patch)

<h2>NoScript Security Suite 2.6.8.39.1-signed - Aug. 26, 2014</h2>
v 2.6.8.39
<br/>=========================================================================
<br/>x [Surrogate] Removed DARLA surrogate and reimplemented its work-around
<br/>  as a XSS filter exception
<br/>x [Bookmarklets] Fixed bookmarklets broken when JavaScript is enabled
<br/>  (thanks therube for reporting)
<br/>x [Surrogate] Work-around for DARLA surrogate breaking Yahoo! Mail

<h2>NoScript Security Suite 2.6.8.38.1-signed - Aug. 24, 2014</h2>
v 2.6.8.38
<br/>=========================================================================
<br/>x Fixed regression preventing Youtube movies from playing
<br/>x Completed work-around for Firefox's Bug 1044351
<br/>x [Surrogate] Improved Yahoo! DARLA source matching

<h2>NoScript Security Suite 2.6.8.37.1-signed - Aug. 24, 2014</h2>
v 2.6.8.37
<br/>=========================================================================
<br/>x Made the new additional script blocking policies more consistent with
<br/>  other features (e.g. the XSS filter)
<br/>x NoScript's toolbar button is now friendlier to other Australis-enabled
<br/>  add-ons
<br/>x Work-around for Firefox's Bug 1044351 (thanks al_9x for RFE)
<br/>x [XSS] Support for new insidious ES6 constructs introduced in Firefox 34
<br/>  (thanks .mario for reporting)
<br/>x [HTTPS] Experimental "Allow HTTPS scripts globally on HTTPS documents"
<br/>   mode
<br/>x [Surrogate] Yahoo! "DARLA" ads loader post-execution surrogate prevents
<br/>  the browser from stalling due to the many <a rel="nofollow" href="http://window.name">window.name</a>-based XSSes
<br/>  intentionally used by this ads delivery script

<h2>NoScript Security Suite 2.6.8.36.1-signed - July 28, 2014</h2>
v 2.6.8.36
<br/>=========================================================================
<br/>x [Surrogate] Updated <a rel="nofollow" href="http://adf.ly">adf.ly</a> replacement (thanks kasper93 for coding)
<br/>x [Surrogate] Updated <a rel="nofollow" href="http://connect.facebook.net">connect.facebook.net</a> replacement
<br/>x Fixed bookmarklet emulation compatibility issue breaking some add-ons
<br/>  which rely on the new getShortcutOrURIAndPostData() function signature
<br/>x Fixed regression causing preventing the Blocked Objects list from being
<br/>  manually reset

<h2>NoScript Security Suite 2.6.8.35.1-signed - July 24, 2014</h2>
v 2.6.8.35
<br/>=========================================================================
<br/>x Improved compatibility with browser built-in Click To Play 
<br/>+ Recently blocked sites are now recorded per-window (causing automatic
<br/>  oblivion of data from Private Browsing windows when they're closed)
<br/>+ Recently blocked sites are not collected at all unless the menu item
<br/>  is configured to be shown (thanks Barbaz for RFE and patch)

<h2>NoScript Security Suite 2.6.8.33.1-signed - July 8, 2014</h2>
v 2.6.8.33
<br/>=========================================================================
<br/>x Fixed regression in smart reloading of just allowed HTML Media elements
<br/>  (thanks barbaz for reporting)
<br/>&nbsp;
<br/>v 2.6.8.32rc3
<br/>=========================================================================
<br/>x Fixed regression: NOSCRIPT element not shown on non-whitelisted pages
<br/>  (thanks Germán Ponte and Michael Kehrein for reporting)
<br/>&nbsp;
<br/>v 2.6.8.32rc2
<br/>=========================================================================
<br/>x Replaced Ci.nsIDOMHTML(Video|Audio)Element (about to be removed) with
<br/>  window.(Video|Audio)Element counterparts (see Moz Bug 1034304)
<br/>&nbsp;
<br/>v 2.6.8.32rc1
<br/>=========================================================================
<br/>x Fixed jammed icon on the navigation bar when "left clicking on toolbar
<br/>  icon toggles..." option is checked (thanks Larry for reporting)

<h2>NoScript Security Suite 2.6.8.31.1-signed - June 30, 2014</h2>
v 2.6.8.31
<br/>=========================================================================
<br/>x Updated HTML5 and Gecko-specific markup elements list
<br/>x Fixed "too much recursion" book in bookmarklet emulation when executing
<br/>  window.open(..., "_self") (thanks al_9x)
<br/>x Improved icons consistence with cascading permissions
<br/>x Fixed 2.6.8.30rc1 regression: broken local file loads
<br/>x Make "[Temporarily] Allow all this page" affect only the top-level
<br/>  document's origin when cascading permissions mode is enabled
<br/>x [Surrogate] Fixed regression about a small change in sandbox principal
<br/>  management breaking some surrogates, including Google Analytics
<br/>x [CAPS] better compatibility with Firefox 30's restored checkloaduri
<br/>  prefs hack
<br/>+ UI support for cascadePermissions and restrictSubdocScripting
<br/>+ "NoScript Options|Advanced|Trusted|Cascade top document's permissions
<br/>  to 3rd party scripts" user-facing preference
<br/>+ "NoScript Options|Advanced|Untrusted|Block scripting in whitelisted
<br/>  subdocuments of non-whitelisted pages" user-facing preference
<br/>+ Backported cascadePermissions and restrictSubdocScripting support to
<br/>  ESR 24

<h2>NoScript Security Suite 2.6.8.29.1-signed - June 23, 2014</h2>
v 2.6.8.29
<br/>=========================================================================
<br/>x [Surrogate] <a rel="nofollow" href="http://googletagservices.com">googletagservices.com</a> replacement (thanks Guest and barbaz)
<br/>x Fixed bookmarklet emulation "Object.getPrototypeOf(...).open is
<br/>  undefined" failure on Nightly (thanks Ria and barbaz for reporting)

<h2>NoScript Security Suite 2.6.8.28.1-signed - June 3, 2014</h2>
v 2.6.8.28
<br/>=========================================================================
<br/>x Fixed bookmarklet execution on non-whitelisted page causing scripts
<br/>  to be globally allowed (thanks barbaz and therube for reporting)

<h2>NoScript Security Suite 2.6.8.27.1-signed - June 3, 2014</h2>
v 2.6.8.27
<br/>=========================================================================
<br/>x Work-around for bug 1005552 (backport to ESR)
<br/>+ [Surrogate] External script surrogates are now triggered whenever a
<br/>  matching script fails to load, no matter the reason, e.g. NoScript
<br/>  permissions, ABE, ABP or RequestPolicy (thanks bonanza for RFE)
<br/>x [XSS] Worked around OpenID-related false positive (thanks Gunnar for
<br/>  reporting)
<br/>x [XSS] Better work around for false positive in <a rel="nofollow" href="http://gmx.com">gmx.com</a> new webmail,
<br/>  designed to work across all its implementations

<h2>NoScript Security Suite 2.6.8.26.1-signed - May 27, 2014</h2>
v 2.6.8.26
<br/>=========================================================================
<br/>x [XSS] <a rel="nofollow" href="http://gmx.com">gmx.com</a> false positive work-around extended to international
<br/>  domains (thanks dood_97 for reporting)
<br/>x [XSS] <a rel="nofollow" href="http://gmx.com">gmx.com</a> false positive work-around extended to <a rel="nofollow" href="http://mail.com">mail.com</a> (thanks
<br/>  boris for reporting)
<br/>+ noscript.cascadePermissions preliminary backend implementation
<br/>+ noscript.restrictSubdocScripting preliminary backend implementation

<h2>NoScript Security Suite 2.6.8.25.1-signed - May 21, 2014</h2>
v 2.6.8.25
<br/>=========================================================================
<br/>x [ABE] Fixed inability to discriminate loads inititated from the URL bar
<br/>  on latest Nightlies (thanks Soothsayer for reporting)
<br/>x [XSS] Fixed false positive on new <a rel="nofollow" href="http://gmx.com">gmx.com</a> login (thanks Luigi and LeeB
<br/>  for reporting)
<br/>x [Surrogate] Fixed new <a rel="nofollow" href="http://google-analytics.com">google-analytics.com</a> surrogate causing Google
<br/>  Spreadsheet's columns not to be resizable (thanks bobbybrown for
<br/>  reporting)

<h2>NoScript Security Suite 2.6.8.24.1-signed - May 14, 2014</h2>
v 2.6.8.24
<br/>=========================================================================
<br/>+ Synthetic load events are sent and error events are suppressed for
<br/>  blocked script elements, in order to work around strict script
<br/>  inclusion enforcers. This feature is triggered by default only by
<br/>  Require.js module imports, but can be fully configured by
<br/>  noscript.fakeScriptLoadEvents.* about:config preferences:
<br/>  * .enabled: switches this feature on/off
<br/>  * .onlyRequireJS: if true (default) applies the feature only to script
<br/>    inclusions initiated by Require.js
<br/>  * .exceptions: AddressMatcher pattern matching the source URLs of
<br/>    script elements which should not cause fake load events when blocked
<br/>  * .docExceptions: AddressMatcher pattern matching the URLs of documents
<br/>    where no fake load event must be raised
<br/>x Improved toStaticHTML() implementation (thanks .mario for reporting)
<br/>x Removed useless ICC profiles from some icons (thanks taffit for RFE)
<br/>x [Surrogate] Improved <a rel="nofollow" href="http://google-analytics.com">google-analytics.com</a> (ga) surrogate
<br/>x [XSS] Fixed characters redundancy reduction bug (thanks Masato Kinugawa
<br/>  for reporting)
<br/>x [XSS] Fixed typo in the new regular expression literals stripping
<br/>  routine implementation (thanks  Masato Kinugawa for reporting)
<br/>x [XSS] Fixed subtle bug in regular expression literals stripping
<br/>  optimization, potentially causing false negatives in edge cases (thanks
<br/>  Masato Kinugawa for reporting)
<br/>x Work-around for Firefox bug causing popup.hidePopup() to fail sometimes
<br/>  and NoScript's on-hover menu needing a click to be closed

<h2>NoScript Security Suite 2.6.8.23.1-signed - May 4, 2014</h2>
v 2.6.8.23
<br/>=========================================================================
<br/>x Work-around for Firefox bug causing popup.hidePopup() to fail sometimes
<br/>  and NoScript's on-hover menu needing a click to be closed
<br/>  
<br/>v 2.6.8.22
<br/>=========================================================================
<br/>x Better algorithm for menu items ordering

<h2>NoScript Security Suite 2.6.8.22.1-signed - May 4, 2014</h2>
v 2.6.8.22
<br/>=========================================================================
<br/>x Better algorithm for menu items ordering

<h2>NoScript Security Suite 2.6.8.21.1-signed - May 3, 2014</h2>
v 2.6.8.21
<br/>=========================================================================
<br/>x Fixed XSL check regression (thanks barbaz for reporting)
<br/>x Work-around for bug 1005552
<br/>+ [Surrogate] Gravatar dummy replacement
<br/>x [Australis] Support for reversed menu on surrogate status/addon bars

<h2>NoScript Security Suite 2.6.8.20.1-signed - April 14, 2014</h2>
v 2.6.8.20
<br/>=========================================================================
<br/>x Partially restored "Allow local links" functionality (works for HTML
<br/>  file:// links but not for embedded resources and scripted loads)
<br/>+ "allowLocalLinks.from" about:config preference to define a whitelist
<br/>  (in ABE URL pattern list syntax) which, if valid and not empty,
<br/>  overrides the JavaScript whitelist which is reused by legacy default
<br/>  for pages allowed to open file:// links (Gecko 28 and above)
<br/>+ "<a rel="nofollow" href="http://allowLocalLinks.to">allowLocalLinks.to</a>" about:config preference to define a whitelist
<br/>  (in ABE URL pattern list syntax) which, if valid and not empty,
<br/>  limits the file:// links which can be opened by allowed pages
<br/>  (Gecko 28 and above)
<br/>- Removed "Allow rich text copy and paste from external clipboard" option
<br/>  from the UI if the browser doesn't support CAPS (Gecko 28 and above)
<br/>x Implemented early permission changes enforcement on not yet reloaded
<br/>  pages, to better match the old CAPS-based behavior (thanks therube
<br/>  for reporting)
<br/>x [Surrogates] Fixed Google Analytics surrogate breaking some javascript:
<br/>  links (thanks Will for reporting)
<br/>x [L18n] Fixed Finnish typo (thanks Kalle Niemitalo for reporting)
<br/>x [XSS] Removed OAuth-triggered false positive (thanks Gunnar Scherf for
<br/>  reporting)
<br/>x [XSS] Stricter checks for HTTPS requests from a same domain origin with
<br/>  different scheme (thanks LouiseRBaldwin for reporting)

<h2>NoScript Security Suite 2.6.8.19.1-signed - March 24, 2014</h2>
v 2.6.8.19
<br/>=========================================================================
<br/>x Fixed CAPS initialization broken in Gecko 27 and below
<br/>x Fixed wildcard port matching broken in Gecko 28 and below
<br/>ing broken in Gecko 28 and below

<h2>NoScript Security Suite 2.6.8.18.1-signed - March 23, 2014</h2>
v 2.6.8.18
<br/>=========================================================================
<br/>x Fixed some bookmarklets being broken by Gecko 28
<br/>x [Surrogate] Fixed some surrogates being broken by Gecko 28
<br/>- Disabled CAPS-based script blocking for Gecko 28 and above
<br/>x Fixed XSLT blocking broken by recent Gecko changes (thanks Xenos for
<br/>  reporting)

<h2>NoScript Security Suite 2.6.8.17.1-signed - March 2, 2014</h2>
v 2.6.8.17
<br/>=========================================================================
<br/>x CSS tweak for Australis support (thanks Jared Wein)
<br/>x Fixed new bookmarklet execution module accidentally using X rays
<br/>  wrappers and therefore failing to interact

<h2>NoScript Security Suite 2.6.8.16.1-signed - Feb. 27, 2014</h2>
v 2.6.8.16
<br/>=========================================================================
<br/>x Closing a placeholder doesn't collapse its space anymore, unless the
<br/>  noscript.placeholderCollapseOnClose is set to true or the "Collapse
<br/>  blocked objects" Embeddings option is checked (thanks Elmart for RFE)
<br/>x Further bookmarklet emulation improvements yet (thanks porl for RFEs)

<h2>NoScript Security Suite 2.6.8.14.1-signed - Feb. 11, 2014</h2>
v 2.6.8.14
<br/>=========================================================================
<br/>x Fixed bookmarklet execution disabling JavaScript on whitelisted pages
<br/>  (Firefox &gt;= 29, thanks vsemozhetbyt for reporting mozbug 970445) 
<br/>x [ABE] Improved compatibility with .local domains (thanks func0der for
<br/>  reporting)

<h2>NoScript Security Suite 2.6.8.13.1-signed - Jan. 22, 2014</h2>
v 2.6.8.13
<br/>=========================================================================
<br/>x Restored z-order mobility for options dialog on Linux (thanks barbaz
<br/>  for RFE)
<br/>x Moved ClearClick options into their own "Advanced" sub-tab (thanks
<br/>  Thrawn for RFE)
<br/>x Minor options dialog tweakings
<br/>- Removed External Filters options panel
<br/>x The option dialog is non-modal and recycled now (thanks barbaz for RFE)

<h2>NoScript Security Suite 2.6.8.12.1-signed - Jan. 14, 2014</h2>
v 2.6.8.12
<br/>=========================================================================
<br/>x Improved work-around for
<br/>  <a rel="nofollow" href="https://bugzilla.mozilla.org/show_bug.cgi?id=958962">https://bugzilla.mozilla.org/show_bug.cgi?id=958962</a>
<br/>+ [Surrogate] Prevent blank ModPagespeed-patched pages when meta refresh
<br/>  inside NOSCRIPT elements is blocked (thanks  thunderscript and barbaz)
<br/>x Fixed one-time this.getSite() error on startup
<br/>+ Browser Console support
<br/>x [Locale] Updated fr (thanks Jack Black)
<br/>x Fixed feed reader broken on non-whitelisted sites in non-stable Firefox
<br/>  (thanks LouCypher for reporting)

<h2>NoScript Security Suite 2.6.8.11.1-signed - Jan. 8, 2014</h2>
v 2.6.8.11
<br/>=========================================================================
<br/>x [XSS] Fixed nested URL parsing optimization bug (thanks Masato Kinugawa
<br/>  for reporting)
<br/>x [XSS] Abort, rather than filter, potential charset-based attacks (
<br/>  thanks Masato Kinugawa for reporting)
<br/>x [XSS] Improved Ebay compatibility (thanks Markus Wienand for reporting)
<br/>&nbsp;
<br/>x [XSS] Fixed bad charset check regression from rc6 (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x [XSS] Fixed bad charset checks not honoring exceptions (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x Adopted the Components.utils.blockScriptForGlobal() API where possible
<br/>x [XSS] Further improvements in recursive link checks (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x [XSS] Better checks for combined data/javascript URIs (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x [XSS] Restored fuzzy HTML sniffing in nested data URI (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x [XSS] Improved data URI checks (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Enhanced recursive link checks (Thanks PK Cano for reporting)
<br/>x [XSS] Stricter HTML checks on second-order data URI injections exactly
<br/>  fitting whole URL attributes (thanks Masato Kinugawa for reporting)

<h2>NoScript Security Suite 2.6.8.10.1-signed - Jan. 1, 2014</h2>
v 2.6.8.10
<br/>=========================================================================
<br/>x [XSS] Fixed regression causing Google Talk false positive (thanks
<br/>  Stuart Young for report)
<br/>x Made about:srcdoc placeholder URL for seamless iframes "mandatory"
<br/>  to reflect its actual permissions status (thanks barbaz for RFE)

<h2>NoScript Security Suite 2.6.8.9.1-signed - Dec. 29, 2013</h2>
v 2.6.8.9
<br/>=========================================================================
<br/>x [XSS] Stricter HTML checks (thanks Masato Kinugawa for reporting)
<br/>x [ClearClick] Exception to cope with Youtube's Google+ comments
<br/>x [XSS] Better data: URI detection (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Improved pure HTML checks (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Fixed InjectionChecker tolerance bug (thanks Masato Kinugawa for
<br/>  reporting)
<br/>x [XSS] Improved sanitization

<h2>NoScript Security Suite 2.6.8.8.1-signed - Dec. 17, 2013</h2>
v 2.6.8.8
<br/>=========================================================================
<br/>+ Enforce docShell-based script blocking for Gecko &gt; 28
<br/>+ [Surrogate] <a rel="nofollow" href="http://addthis.com">addthis.com</a> widget emulation (thanks Mathnerd314)

<h2>NoScript Security Suite 2.6.8.7.1-signed - Dec. 2, 2013</h2>
v 2.6.8.7
<br/>=========================================================================
<br/>x Fixed performance regression in request identity tracking (thanks
<br/>  cumdacon and nospamboz for reporting)
<br/>+ Protection against new SQLXSSI obfuscation techinques (thanks Alex
<br/>  Inführ for reporting)
<br/>x Fixed noscript.allowedMimeRegExp ignoring the FONT pseudo-type (thanks
<br/>  barbaz for reporting)

<h2>NoScript Security Suite 2.6.8.6.1-signed - Nov. 27, 2013</h2>
v 2.6.8.6
<br/>=========================================================================
<br/>x Fixed bugs in noscript.allowedMimeRegExp support (thanks barbaz for
<br/>  reporting)
<br/>x [ABE] Fixed increased asynchronicity in Gecko's network processing
<br/>  causing intermittent failures (thanks barbaz and al_9x for reporting)
<br/>x [Surrogate] Fixed bug in asynchronous Google Analytics API emulation
<br/>  (thanks Lucas Malor for reporting)
<br/>x Fixed missing icon for blocked objects when no script is present in the
<br/>  page and scrips are globally allowed

<h2>NoScript Security Suite 2.6.8.5.1-signed - Nov. 8, 2013</h2>
v 2.6.8.5
<br/>=========================================================================
<br/>x [ClearClick] Fixed empty contentEditable elements cannot receive
<br/>  keyboard events in cross-site frames (breaking latest Youtube comments)
<br/>x [XSS] Fixed false positive on redirected script inclusions (breaking
<br/>  Stripe payments on Humblebundle, thanks ableeker for reporting)
<br/>x [Surrogate] Better GA, GAPI, Twitter and Facebook compatibility

<h2>NoScript Security Suite 2.6.8.4.1-signed - Oct. 24, 2013</h2>
v 2.6.8.4
<br/>=========================================================================
<br/>x Fixed shortcut bookmarklet execution requiring noscript.allowURLBarJS
<br/>  preference to be true on Firefox 25 beta (thanks ivank for report)
<br/>x [Surrogate] Better emulation of for Google Analytics asynchronous
<br/>  tracking (for instance, fixes GMail's "Sign in" link)
<br/>x [ClearClick] Fixed exception being thrown on Firefox 27 alpha (Nightly)
<br/>x Fixed URL bar enhancements broken by Firefox 25 beta
<br/>x Fixed SetVariable/GetVariable failing on dynamically created Flash
<br/>  elements, e.g. with SFWObject (thanks longsleep for reporting)

<h2>NoScript Security Suite 2.6.8.3.1-signed - Oct. 14, 2013</h2>
v 2.6.8.3
<br/>=========================================================================
<br/>x Fixed complex bookmarklet execution requiring synchronous XHR in a
<br/>  content policy callback
<br/>x Fixed full-page plugins failed activation until the page is reloaded
<br/>x Fixed full-page HTML5 media failing to play after activation until the
<br/>  page is reloaded

<h2>NoScript Security Suite 2.6.8.2.1-signed - Oct. 1, 2013</h2>
v 2.6.8.2rc2
<br/>=========================================================================
<br/>x Fixed request methods different than POST being turned into GET by
<br/>  internal channel redirection when the DNS entry is not cached yet
<br/>&nbsp;
<br/>v 2.6.8.2rc1
<br/>=========================================================================
<br/>x Fixed regression from CTP fix: some kinds of embedded objects being
<br/>  displayed, even though in disabled state, along with placeholders

<h2>NoScript Security Suite 2.6.8.1.1-signed - Sept. 20, 2013</h2>
v 2.6.8.1
<br/>=========================================================================
<br/>+ Added to the default whitelist some CDN subdomains dedicated to serve
<br/>  popular open source JS libraries (thanks t3g for RFE)
<br/>x Fixed notification box issues with Seamonkey (thanks barbaz)
<br/>x Work-around for broken CTP notifications (bug 903675)
<br/>x Work-around for Youtube comments XSS false (?) positive
<br/>x [Locale] Updated fr (thanks Jack Black)

<h2>NoScript Security Suite 2.6.7.1.1-signed - Aug. 14, 2013</h2>
v 2.6.7.1
<br/>=========================================================================
<br/>x [XSS] Fixed false positive on GMail when opening the Google Docs file
<br/>  picker (thanks Harry for reporting)
<br/>x [XSS] Fixed parameter elision bug 
<br/>+ Protection against another variant of error-based SQLXSSI (thanks Alex
<br/>  Inführ for reporting)

<h2>NoScript Security Suite 2.6.7.1-signed - Aug. 7, 2013</h2>
v 2.6.7
<br/>=========================================================================
<br/>x Fixed HTML 5 media content types not blocked when loaded as top-level
<br/>  documents (thanks al_9x for reporting)
<br/>x [XSS] Fixed bug in SQLXSSI detection (thanks Alex Inführ for reporting)
<br/>x Fixed resources from resource: origin (such as PDF.js fonts) being
<br/>  unnecessarily blocked in restrictive embed blocking mode
<br/>x Removed "ReferenceError: PolicyState is not defined" message appearing
<br/>  sometimes in the console dump on startup
<br/>x Fixed scrollbars removed in frames activated from placeholder (thanks
<br/>  al_9x for reporting)

<h2>NoScript Security Suite 2.6.6.9.1-signed - July 21, 2013</h2>
v 2.6.6.9
<br/>=========================================================================
<br/>+ [XSS] Added several experimental / unofficial markup atoms to the
<br/>  build-time matcher generator (thanks .mario for reporting)

<h2>NoScript Security Suite 2.6.6.8.1-signed - July 6, 2013</h2>
v 2.6.6.8
<br/>=========================================================================
<br/>x [XSS] Protection against filter evasion exploiting Adobe Flash URL
<br/>  parsing and charset handling bugs (thanks Soroush Dalili for reporting)

<h2>NoScript Security Suite 2.6.6.7.1-signed - July 2, 2013</h2>
v 2.6.6.7
<br/>=========================================================================
<br/>x Fixed ClearClick triggered by recently changed browser built-in Click
<br/>  To Play placeholders (bug 889228)
<br/>x [Locale] Updated Czech (thanks Karel)

<h2>NoScript Security Suite 2.6.6.6.1-signed - June 10, 2013</h2>
v 2.6.6.6
<br/>=========================================================================
<br/>+ Made mimetype whitelisting through the noscript.allowedMimeRegExp
<br/>  preference work with the WebGL pseudo type (thanks Thrawn for RFE)
<br/>&nbsp;
<br/>v 2.6.6.5
<br/>=========================================================================
<br/>x Better fix for Nightly breakages
<br/>&nbsp;
<br/>v 2.6.6.4
<br/>=========================================================================
<br/>x Fixed some recent breakages on Nightly
<br/>&nbsp;
<br/>v 2.6.6.3
<br/>=========================================================================
<br/>x Improved "fixable" JavaScript links detection (thanks asdf for RFE)

<h2>NoScript Security Suite 2.6.6.2.1-signed - May 17, 2013</h2>
v 2.6.6.2
<br/>=========================================================================
<br/>x Fixed regression in Tab Mix Plus compatibility due to Gecko 21 changes
<br/>x Improved placeholder management for full-document plugin content, e.g.
<br/>  makes Youtube embeddings more usable on Facebook

<h2>NoScript Security Suite 2.6.6.1.1-signed - April 29, 2013</h2>
v 2.6.6.1
<br/>=========================================================================
<br/>x Fixed backward compatibility issue with recent channel cloning changes
<br/>x [XSS] Compatibility with certain redirector URL patterns (thanks
<br/>  Stephen F. for reporting)
<br/>x [ABE] Fixed letest Tab Mix Plus version (4.1.0) causing loads started
<br/>  from the address bar to be considered cross-site
<br/>x [Locale] Updated Esperanto (thanks Michael Wolf)
<br/>x [Locale] Updated Upper Serbian (thanks Michael Wolf)

<h2>NoScript Security Suite 2.6.6.1-signed - April 3, 2013</h2>
v 2.6.6
<br/>=========================================================================
<br/>x Added per-window private browsing support to some background requests
<br/>x Improved channel cloning for internal redirections
<br/>x Added further Microsoft mail services dependencies to the default
<br/>  whitelist
<br/>x [XSS] Fixed character class bug (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Fixed potential jQuery-based injection (thanks Masato Kinugawa
<br/>  for reporting)
<br/>x Improved handling of some moz-null principal instances in ABE requests
<br/>  (thanks Thrawn for reporting)
<br/>+ New 360Haven surrogate lets the site work with 1st party scripts
<br/>  allowed and ads/tracker scripts forbidden
<br/>  s forbidden

<h2>NoScript Security Suite 2.6.5.9.1-signed - March 11, 2013</h2>
v 2.6.5.9
<br/>=========================================================================
<br/>x Fixed <a rel="nofollow" href="http://outlook.com">outlook.com</a> UI broken in Nightly by work-around for bug 677050
<br/>  (thanks Raùl Duràn of Microsoft for troubleshooting help)
<br/>- Removed STS support for Gecko &gt;= 4, which provides built-in HSTS
<br/>x Work around for multiple object creation causing UI inconsistencies
<br/>  (thanks al_9x for reporting)
<br/>x [XSS] Work-around for false positives caused by Gecko &gt;= 18 changes in
<br/>  Function.prototype.toSource() (thanks yahoo mail user for report)

<h2>NoScript Security Suite 2.6.5.8.1-signed - Feb. 26, 2013</h2>
v 2.6.5.8
<br/>=========================================================================
<br/>+ Automatic Google Analytics web bugs blocking if <a rel="nofollow" href="http://google-analytics.com">google-analytics.com</a> is
<br/>  not whitelisted
<br/>+ "Mark as untrusted" button on the site info page (thanks SwissBIT for
<br/>  RFE)
<br/>+ "Allow"/"Forbid"/"Mark as untrusted" icons on the site info buttons
<br/>x Inclusion type checks exception for <a rel="nofollow" href="http://yandex.st">yandex.st</a>
<br/>x [XSS] Exception for requests across *.photobucket.com subdomains, which
<br/>  may legitimately contain syntactically valid Javascript fragments
<br/>  (thanks RAJAH235 for reporting)

<h2>NoScript Security Suite 2.6.5.7.1-signed - Feb. 18, 2013</h2>
v 2.6.5.7
<br/>=========================================================================
<br/>x Made "Yes, remove all protections" the default button in the removal
<br/>  warning dialog
<br/>x [XSS] Fixed post-response encoding checks applied to UTF-8 pages too
<br/>  (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Removed host redirection chance on XSS-vulnerable pages (thanks
<br/>  Masato Kinugawa for reporting)
<br/>&nbsp;
<br/>v 2.6.5.6
<br/>=========================================================================
<br/>x [XSS] Smarter syntax check optimization, removes harmful side effect
<br/>  (thanks Masato Kinugawa for reporting)
<br/>  
<br/>v 2.6.5.5
<br/>=========================================================================
<br/>x [XSS] Fixed bug in broken string literals balancing (thanks Masato
<br/>  Kinugawa for reporting)
<br/>  
<br/>v 2.6.5.4
<br/>=========================================================================
<br/>+ [XSS] Obfuscated string literals detection (thanks Masato Kinugawa for
<br/>  reporting)
<br/>  
<br/>v 2.6.5.3
<br/>=========================================================================
<br/>x [XSS] Improved parsing while decoding mixed-charset encoded URLs
<br/>  (thanks Masato Kinugawa for reporting)
<br/>+ [XSS] Better decoding of maliciously mixed-charset encoded strings
<br/>  (thanks Masato Kinugawa for reporting)
<br/> 
<br/>v 2.6.5.2
<br/>=========================================================================
<br/>x [XSS] Work-around for a Gecko race condition allowing some
<br/>  script-enabled attackers to make the charset-mismatch checks abort
<br/>  prematurely (thanks Masato Kinugawa for reporting)
<br/>&nbsp;
<br/>v 2.6.5.1
<br/>=========================================================================
<br/>+ [XSS] Forced unicode conversions more resilient to invalid input
<br/>  (thanks Masato Kinugawa for reporting)
<br/>  
<br/>v 2.6.5
<br/>=========================================================================
<br/>+ [XSS] More exotic charset awareness added to script injection checks
<br/>  (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Removed limited injection chance allowing redirection of XSS
<br/>  vulnerable pages to an integral IP (thanks Masato Kinugawa for
<br/>  reporting)
<br/>+ "Security Downgrade Warning" suggests blacklist mode as a better option
<br/>  than uninstalling, to retain scripting-unrelated protections 
<br/>- Removed legacy uninstall hooks and related localized strings

<h2>NoScript Security Suite 2.6.4.4.1-signed - Jan. 29, 2013</h2>
v 2.6.4.4
<br/>=========================================================================
<br/>x Fixed plugin placeholders not shown for plugin documents on Gecko &gt;= 19
<br/>  (thanks therube for reporting)
<br/>+ [Surrogate] Support for callbacks in Google Analytics' _gaq.push()
<br/>  method (thanks Paola Moro for reporting)
<br/>+ Allow/Forbid button on the site info page (thanks Edward Huff for RFE)

<h2>NoScript Security Suite 2.6.4.3.1-signed - Jan. 14, 2013</h2>
v 2.6.4.3
<br/>=========================================================================
<br/>x [Surrogate] Less aggressive but more compatible <a rel="nofollow" href="http://adf.ly">adf.ly</a> surrogate (it
<br/>  automatically skips ad but requires scripts enabled on <a rel="nofollow" href="http://adf.ly">adf.ly</a>)
<br/>x Fixed whitelist listbox couldn't be fully selected by CTRL+A in recent
<br/>  Firefox versions (thanks Guardian for reporting)
<br/>+ [Surrogate] <a rel="nofollow" href="http://dimtus.com">dimtus.com</a> scriptless automatic image revelation
<br/>+ [Surrogate] <a rel="nofollow" href="http://imageteam.org">imageteam.org</a> scriptless automatic image revelation
<br/>x [External Filters] Fixed cache API compatibility issue

<h2>NoScript Security Suite 2.6.4.2.1-signed - Dec. 27, 2012</h2>
v 2.6.4.2
<br/>=========================================================================
<br/>x [ClearClick] Fixed miscalculations in screenshot comparison
<br/>x Fixed wrong placeholder position for standalone HTML 5 video content
<br/>  (thanks mjh563 for reporting)
<br/>+ "Appearance" option to hide the "About NoScript" menu item
<br/>x Deny loading of any empty Flash object
<br/>x Fixed HSB locale (thanks Michael Wolf)
<br/>x Fixed forced HTTPS breaks redirects on Firefox &gt;= 18 (thanks mjh563 for
<br/>  reporting)
<br/>x Work-around for Gecko calling nsIContentPolicy::shouldProcess() with
<br/>  null location for Flash objects sometimes (thanks al_9x for report)
<br/>x Fixed broken early HTTP observer on Firefox &gt;= 18 (thanks aloishammer
<br/>  for reporting)
<br/>x Fixed anti-popunder surrogate breaking BFCache (thanks whatever for
<br/>  reporting)

<h2>NoScript Security Suite 2.6.4.1.1-signed - Dec. 17, 2012</h2>
v 2.6.4.1
<br/>=========================================================================
<br/>x Fixed new placeholder close button being hidden on some Youtube pages 
<br/>&nbsp;
<br/>v 2.6.4
<br/>=========================================================================
<br/>x [XSS] Improved compatibility with Twitter's cross-site requests
<br/>+ Close button on embedding placeholder (like using shift+click on the
<br/>  placeholder itself). Shift clicking the close button bypasses it.
<br/>x Fixed placeholders intercepting clicks from overlaid elements (thanks
<br/>  al_9x)
<br/>x Fixed unbound embed enablement confirmation dialog size (thanks therube
<br/>  for reporting)

<h2>NoScript Security Suite 2.6.3.1-signed - Dec. 4, 2012</h2>
v 2.6.3
<br/>=========================================================================
<br/>x [XSS] Further tweaks to reduce false positives (thanks Edward C. Kim
<br/>  for reporting)
<br/>x [XSS] The "maybe JS" step now removes leading parens, reducing false
<br/>  positives e.g. on Picasa (thanks jerriy for reporting)
<br/>x [Surrogate] Work-around for anti-popunder surrogate causing Ebay to
<br/>  recreate phantom cookies on page unload (thanks mjh563 for reporting)
<br/>x Work-around for some extensions (e.g. Adblock Plus, Tab Mix Plus)
<br/>  breaking bookmarlets and URL bar Javascript support after being updated
<br/>  for Firefox 17
<br/>x Removed some console noise
<br/>+ [Surrogate] Updated <a rel="nofollow" href="http://adf.ly">adf.ly</a> surrogate to work with new links

<h2>NoScript Security Suite 2.6.2.1-signed - Nov. 22, 2012</h2>
v 2.6.2
<br/>=========================================================================
<br/>x Fixed Google links anonymizer surrogate interfering with the "Search
<br/>  tools" button (thanks Sledge Fox and Brian Admire for reporting)
<br/>x Fixed impossible to copy lines from Console² if opened by NoScript
<br/>  (thanks therube for reporting and Phil Chee for suggestion)
<br/>x [XSS] Exception for <a rel="nofollow" href="http://wpcomwidgets.com">wpcomwidgets.com</a> safe inclusions
<br/>x Slightly reduced About box width (thanks GµårÐïåñ for RFE)

<h2>NoScript Security Suite 2.6.1.1-signed - Nov. 13, 2012</h2>
v 2.6.1
<br/>=========================================================================
<br/>x [XSS] Better compatibility with Ebay's saved searches
<br/>+ [Surrogate] <a rel="nofollow" href="http://Imagebax.com">Imagebax.com</a> scriptless ads skipping redirection
<br/>x Fixed first non-cached page load in a session from about:newtab failing
<br/>- Removed legacy XUL script blocking code
<br/>+ Added optional diagnostic to centralized channel aborting
<br/>x Fixed bug in Java URLs resolution

<h2>NoScript Security Suite 2.6.1-signed - Nov. 2, 2012</h2>
v 2.6
<br/>=========================================================================
<br/>x Improved long URL wrapping for more manageable plugin placeholder
<br/>  tooltips
<br/>x Fixed ABE notifications bleeding out of the viewport when very long
<br/>  URLs are involved
<br/>+ [Surrogate] More efficient deferred script loading and syntax check,
<br/>  saves memory and startup time from unused surrogates
<br/>+ [Surrogate] <a rel="nofollow" href="http://Picbucks.com">Picbucks.com</a> scriptless ads skipping redirection
<br/>+ [Surrogate] <a rel="nofollow" href="http://Imagebunk.com">Imagebunk.com</a> scriptless image revealing
<br/>+ [Surrogate] <a rel="nofollow" href="http://Picsee.net">Picsee.net</a> scriptless image revealing
<br/>+ Added navigator.doNotTrack property support

<h2>NoScript Security Suite 2.5.9.1-signed - Oct. 26, 2012</h2>
v 2.5.9
<br/>=========================================================================
<br/>+ Added <a rel="nofollow" href="http://afx.ms">afx.ms</a> and <a rel="nofollow" href="http://gfx.ms">gfx.ms</a> (fully controlled by Microsoft, no user content
<br/>  allowed) to the default whitelist (required by MS mail services)
<br/>+ [XSS] Removed false positive on some Google Gadgets; the work-around
<br/>  can be disabled by setting the noscript.filterXExceptions.ggadgets
<br/>  about:config preference to false (thanks Silvana for reporting)
<br/>+ Added new fake mimetype placeholder "FRAME" to match FRAMEs and IFRAMES
<br/>  with the noscript.allowedMimeRegExp preference
<br/>+ Made mimetype whitelisting through the noscript.allowedMimeRegExp
<br/>  preference work with FRAMEs and IFRAMEs as well
<br/>x Fixed redirections involving sites marked as untrusted causing
<br/>  inconsistencies in page permissions, with JavaScript being blocked even
<br/>  if the site is whitelisted (thanks al_9x for reporting)
<br/>x Fixed regression on older Gecko versions causing NoScript to believe
<br/>  the browser is proxied when it's not

<h2>NoScript Security Suite 2.5.8.1-signed - Oct. 17, 2012</h2>
v 2.5.8
<br/>=========================================================================
<br/>x Work-around for unique origins being assigned to URL bar loads by Gecko
<br/>  16 and above interfering with some ABE rules
<br/>x Work-around for bug 797684 patch causing ABE's Sandbox action to fail
<br/>x Work-around for regression from Mozilla bug 797684 fix causing frames
<br/>  not to be blocked correctly in recent &gt;= 18 builds
<br/>x Slightly revised About box to make more room for contributors

<h2>NoScript Security Suite 2.5.7.1-signed - Oct. 5, 2012</h2>
v 2.5.7
<br/>=========================================================================
<br/>x Fixed synchronous timeout emulation ordering bug in bookmarklet
<br/>  execution on scriptless pages (thanks Infocatcher for reporting)
<br/>x [XSS] Fixed comment preprocessing optimization affecting free
<br/>  JavaScript detection, thanks Masato Kinugawa for reporting
<br/>x [XSS] Fixed second order data: URLs sanitization issue, thanks Masato
<br/>  Kinugawa for reporting
<br/>x Fixed meta refresh blocker notification bar broken on Gecko &lt; 4 (thanks
<br/>  nitou for reporting)
<br/>x Fixed iframe placeholder positioning issue (thanks al_9x for report)
<br/>x Fixed regression in placeholder positioning (thanks al_9x for report)
<br/>x [ClearClick] Fixed false positive on cross-site SVG document embeddings
<br/>  (thanks Steffen for reporting)

<h2>NoScript Security Suite 2.5.6.1-signed - Sept. 24, 2012</h2>
v 2.5.6
<br/>=========================================================================
<br/>x [XSS] Fixed slow regular expression causing some base64 request
<br/>  payloads to trigger false positives (thanks Mirko Tasler for reporting)
<br/>+ Force placeholders to frontmost position e.g. on HTML 5 Youtube content 
<br/>+ New icon for blocked embeddings on globally allowed pages (thanks
<br/>  therube for RFE)

<h2>NoScript Security Suite 2.5.5.1-signed - Sept. 12, 2012</h2>
v 2.5.5
<br/>=========================================================================
<br/>+ More reliable Java applet origin identification
<br/>x Cross-browser work-around for
<br/>  <a rel="nofollow" href="https://bugzilla.mozilla.org/show_bug.cgi?id=789773">https://bugzilla.mozilla.org/show_bug.cgi?id=789773</a>

<h2>NoScript Security Suite 2.5.4.1-signed - Sept. 4, 2012</h2>
v 2.5.4
<br/>=========================================================================
<br/>x Fixed HTTP checks not being skipped anymore for some chrome-generated
<br/>  XMLHttpRequest requests because of a Gecko 15 change
<br/>x Work-around for cloned DOM nodes not retaining additional
<br/>  chrome-attached information anymore, thus breaking placeholders in some
<br/>  cases (thanks al_9x for reporting)
<br/>x Fixed placeholder post-enablement event channeling broken by Sandbox
<br/>  changes
<br/>x Fixed placeholder sizes messed up by changes in Gecko 17
<br/>x Work-around for broken content policy call for Java plugin on Gecko 17
<br/>  and above (thanks marty60 for reporting)

<h2>NoScript Security Suite 2.5.3.1-signed - Aug. 27, 2012</h2>
v 2.5.3
<br/>=========================================================================
<br/>x [XSS] Fixed false positives on URLs containing an ASP.NET cookieless
<br/>  session identifier (thanks Trupti Chaudhari for reporting)
<br/>+ noscript.eraseFloatingElements about:config preference to switch the
<br/>  mousedown + del key floating popup erasing feature off and on
<br/>x Limited the mousedown + del key floating popup erasing feature to pages
<br/>  where scripts are forbidden and to absolute or fixed position elements
<br/>x Fixed JavaScript URL non-void expression evaluation in the URL bar
<br/>  causing scripts to get globally allowed (thanks al_9x for reporting)
<br/>x [XSS] Work-around for a Gecko URL parsing quirk (thanks .mario for
<br/>  reporting)

<h2>NoScript Security Suite 2.5.2.1-signed - Aug. 22, 2012</h2>
v 2.5.2
<br/>=========================================================================
<br/>x [ClearClick] Improved protection against clickjacking timing attacks
<br/>  (thanks Nafeez Ahmed for reporting)
<br/>x Fine tuned floating div (in-page popup) removal by locking it to the
<br/>  nearest positioned ancestor and swallowing the mouseup event if the
<br/>  DEL key has been hit after last mousedown

<h2>NoScript Security Suite 2.5.1.1-signed - Aug. 12, 2012</h2>
+ Holding the left mouse button down on a page element and hitting the
<br/>  DEL key will remove it (useful to forcibly kill in-page popups when
<br/>  scripts are disabled)
<br/>x Fixed Acid3 test scoring 99 instead of 100 because of a Cursorjacking
<br/>  protection implementation detail
<br/>- Disabled LiveConnect interception on Gecko 16 or better, since Java
<br/>  globals have been removed from the DOM
<br/>x [XSS] Work-around for Mozilla TBPL DOS (thanks Daniel Holbert for
<br/>  reporting)
<br/>x Fixed Silverlight and Flash scripted initialization patches being
<br/>  broken by recent JavaScript interpreter changes
<br/>x Work-around for <a rel="nofollow" href="http://hp-ww.com">hp-ww.com</a> misconfiguration (JavaScript files served
<br/>  with bogus content-type header)

<h2>NoScript Security Suite 2.5.1-signed - July 29, 2012</h2>
v 2.5
<br/>=========================================================================
<br/>+ [XSS] Improved XML handling algorithm preserves E4X detection accuracy
<br/>  while removing false positives, e.g. against OAUTH payloads
<br/>x Work-around for additional browser tools placed on the bottom of the
<br/>  content messing with NoScript's notification height (thanks ochristi
<br/>  for report)
<br/>x [XSS] Added exception for self-injecting <a rel="nofollow" href="http://yahoo.com/yimg.com">yahoo.com/yimg.com</a> frames (can
<br/>  be disabled by setting the noscript.filterXExceptions.yahoo
<br/>  about:config preference to false)
<br/>x Fixed placeholders for absolutely positioned elements may cause layout
<br/>  glitches (thanks al_9x for reporting)
<br/>x Fixed interaction with built-in Firefox's click-to-play causing
<br/>  infinite object activation loop (thanks al_9x for reporting)

<h2>NoScript Security Suite 2.4.9.1-signed - July 20, 2012</h2>
v 2.4.9
<br/>=========================================================================
<br/>+ Added ability to replace obsolete default whitelist entries
<br/>x Replaced <a rel="nofollow" href="http://browserid.org">browserid.org</a> with <a rel="nofollow" href="http://persona.org">persona.org</a> in the default whitelist
<br/>x Improved anti-DOS protection
<br/>x Better usability with some HTML5 Youtube videos (thanks Mike Perry
<br/>  for reporting)
<br/>x Reverted to the ctrl+shift+S main keyboard shortcut
<br/>x [XSS] Fixed XML preprocessing breaking detection of some E4X
<br/>  constructs (thanks Pepe Vila for reporting)
<br/>+ [XSS] Protection against error-based SQLI with a XSS payload (thanks
<br/>  Ashar Javed for reporting, original disclosure by Keith Makan)

<h2>NoScript Security Suite 2.4.8.1-signed - July 10, 2012</h2>
v 2.4.8
<br/>=========================================================================
<br/>x Work-around for Mozilla bug 771655 (broken debugger)
<br/>x Changed default UI shortcut to ctrl+shift+N because ctrl+shift+S is
<br/>  taken by the debugger
<br/>x Fixed feed: and pcast: URLs not being unwrapped in some checks (thanks
<br/>  Alex Inführ for reporting)
<br/>x Removed assumptions of a body element from some code paths which may
<br/>  handle generic XML documents

<h2>NoScript Security Suite 2.4.7.1-signed - June 28, 2012</h2>
v 2.4.7
<br/>=========================================================================
<br/>x [ClearClick] Fixed Tumblr widgets false positive (thanks @Raydere for
<br/>  report)
<br/>x [XSS] Fixed false positive with some Base64-encoded Yahoo News
<br/>  subrequests
<br/>x Fixed regression, noscript.allowedMimeRegExp not working anymore for
<br/>  plugins other than Java, Flash and Silverlight
<br/>x Auto-anchored multi-valued regexp preferences can now be separated by
<br/>  regular spaces rather than just newlines (this behavior was documented
<br/>  but not actually implemented for noscript.allowedMimeRegExp)

<h2>NoScript Security Suite 2.4.6.1-signed - June 12, 2012</h2>
v 2.4.6
<br/>=========================================================================
<br/>x [XSS] Updated execution sink checks (thanks Masato Kinugawa for report)
<br/>x [XSS] Fixed newline parsing bug (thanks Masato Kinugawa for report)
<br/>x [XSS] Fixed document.cookie minimal assignment false negative (thanks
<br/>  Masato Kinugawa for report)
<br/>x [XSS] Fixed dotted query parameter names false positives, affecting
<br/>  OpenID, Hotmail and other services (thanks Gavin H for report)
<br/>x Fixed some messages being dumped to the console even if logging is
<br/>  turned off (thanks marbler for report)

<h2>NoScript Security Suite 2.4.5.1-signed - June 10, 2012</h2>
v 2.4.5
<br/>=========================================================================
<br/>+ [XSS] Improved E4X handling (thanks Masato Kinugawa for report)
<br/>x [XSS] Fixed regression allowing some alert-only PoCs (thanks Soroush
<br/>  Dalili and Ahamed Nafeez for reporting)
<br/>x [XSS] Improved unconventional assignments detection  (thanks Masato
<br/>  Kinugawa for report)
<br/>x [Locale] Corrected he-IL merge (thanks baryoni)
<br/>x [XSS] Improved data: URIs detection (thanks Masato Kinugawa for report)
<br/>+ [XSS] More regular expression objects caching as a speed optimization
<br/>- [XSS] Removed optimization shortcut causing false negatives on some
<br/>  kind of concatenated assignments (thanks Masato Kinugawa for report)
<br/>+ [XSS] Improved "Maybe JS" heuristic (thanks Masato Kinugawa for report)
<br/>+ [XSS] More aggressive obsolete charsets filtering (thanks Masato
<br/>  Kinugawa for report)

<h2>NoScript Security Suite 2.4.4.1-signed - June 4, 2012</h2>
v 2.4.4
<br/>=========================================================================
<br/>x [Locale] Updated he-IL (thanks baryoni)
<br/>x Fixed early synthetic DNS notification causing blank stripe on the
<br/>  bottom of the first browser window if started maximized or fullscreen
<br/>- Removed Firefox 2.x compatibility code
<br/>x Fixed regression from 2.4.3rc3 causing same-site stylesheets to be
<br/>  checked for mime type mismatches and XSLT inclusions to be incorrectly
<br/>  blocked (thanks hanfi for reporting)

<h2>NoScript Security Suite 2.4.3.1-signed - May 27, 2012</h2>
v 2.4.3
<br/>=========================================================================
<br/>x Fixed JS links detection not resolving JS string escapes (thanks vyznev
<br/>  for reporting)
<br/>x Fixed HTML 5 parser detection in META refresh processing being broken
<br/>  by a removed browser preference
<br/>x Fixed exception raised by inclusion type checks when parent document's
<br/>  URI has no host
<br/>+ [XSS] Better detection of free inline script injections (without string
<br/>  literal evasion) inside function calls
<br/>+ The noscript.allowedMimeRegExp preference now applies also to Java,
<br/>  Flash and Silverlight mime types

<h2>NoScript Security Suite 2.4.2.1-signed - May 19, 2012</h2>
v 2.4.2rc7
<br/>=========================================================================
<br/>x [ABE] IPv6 link-local addresses (fe80:/10) are not considered belonging
<br/>  to the LAN anymore for the purpose of cross-zone request forgery checks
<br/>  in order to safely work-around DNS misconfiguration issues in the wild
<br/>  (thanks siu and ralf for reporting)
<br/>x [ABE] Fixed router WEB UI fingerprinting failing on some devices
<br/>  because of redirection loops
<br/>x [XSS] Protection against HPP attacks exploiting URL parsing quirks
<br/>  specific to ASP Classic (thanks Soroush Dalili for reporting)
<br/>x Fixed first application updates check failing on Nightly (bug 754393)
<br/>x [XSS] Fixed false positive regression on some file hosting sites (thanks
<br/>   Janne Maekelae for reporting)

<h2>NoScript Security Suite 2.4.1.1-signed - May 10, 2012</h2>
v 2.4.1
<br/>==========================================================================
<br/>+ [XSS] Protection against exploitation of classic MS ASP's coalescing of
<br/>  same-name query parameters (thanks  Soroush Dalili for reporting)
<br/>+ [XSS] Protection against URL injections in in <a rel="nofollow" href="http://window.name">window.name</a>
<br/>x [XSS] Fixed case-sensitivity bug in detection of unicode escape
<br/>  sequences (thanks Masato Kinugawa for reporting)
<br/>+ [Surrogate] <a rel="nofollow" href="http://adagionet.com">adagionet.com</a> inclusion surrogate
<br/>x Fixed "Allow sites open through bookmarks" regression (thanks jerryi and
<br/>  therube for reporting)
<br/>x [XSS] Fixed bug in the InjectionChecker tokenization (thanks Phil
<br/>  Purviance for reporting)
<br/>+ Added inclusion type check exception to the lesscss Google Code file
<br/>  repository, often used as a CDN

<h2>NoScript Security Suite 2.4.1-signed - May 4, 2012</h2>
v 2.4rc8
<br/>==========================================================================
<br/>x [XSS] Improved global exception injection detection
<br/>x [XSS] Fixed bug in late <a rel="nofollow" href="http://window.name">window.name</a> payload checking (thanks Soroush
<br/>  Dalili for reporting)
<br/>x [Locale] Fixed broken overlay on Basque localized browsers (for real
<br/>  this time, thanks afa for reporting)
<br/>&nbsp;
<br/>v 2.4rc7
<br/>==========================================================================
<br/>+ [XSS] Improved InjectionChecker detection of in-code multiple insertions
<br/>  (thanks Krzysztof Kotowicz)
<br/>+ [XSS] InjectionChecker detection of single assignment evaluation through
<br/>  global exception handling (thanks Gareth Heyes)
<br/>x [Locale] Fixed broken overlay on Basque localized browsers (thanks afa
<br/>  for reporting)
<br/>&nbsp;
<br/>v 2.4rc6
<br/>==========================================================================
<br/>+ [Surrogate] Skimlinks surrogate script (thanks Drewett for reporting)
<br/>&nbsp;
<br/>v 2.4rc5
<br/>==========================================================================
<br/>x Improved temporary permissions management during bookmarklet execution
<br/>&nbsp;
<br/>v 2.4rc4
<br/>==========================================================================
<br/>x Fixed 2.4rc3 regression in url bar JavaScript execution
<br/>  
<br/>v 2.4rc3
<br/>==========================================================================
<br/>x Fixed bookmarklet couldn't be executed on blacklisted sites in "Globally
<br/>  Allow" mode (thanks tharpa for reporting)
<br/>&nbsp;
<br/>v 2.4rc2
<br/>==========================================================================
<br/>x [ClearClick] Fixed cross-site clicks blocked on Firefox &lt; 3.6 (thanks
<br/>  Janet Whipple for reporting)
<br/>&nbsp;
<br/>v 2.4rc1
<br/>==========================================================================
<br/>x [Surrogate] Fixed surrogates broken on Nightly

<h2>NoScript Security Suite 2.3.9.1-signed - April 26, 2012</h2>
v 2.3.9
<br/>==========================================================================
<br/>+ [ClearClick] More tolerant snapshot comparation algorithm (partially
<br/>  backported from NSA) to reduce false positives (tweaked by the
<br/>  noscript.clearClick.threshold percentage value in about:config)
<br/>- Removed about:credits from default whitelist
<br/>x [ClearClick] Fixed false positives (e.g. on embedded Vimeo movies) in
<br/>  obscuration by windowed plugins checks
<br/>x Fixed compatibility regressions on Firefox 3.x
<br/>x Following links from the About dialog now closes it (thanks Guardian for
<br/>  suggestions)
<br/>x Fixed NOSCRIPT META refreshes blocking not working when scripts are
<br/>  globally allowed (thanks and Ken and Tom T. for reporting)
<br/>x [ClearClick] Fixed false positives caused by accelerated graphics with
<br/>  some plugin content

<h2>NoScript Security Suite 2.3.8.1-signed - April 19, 2012</h2>
v 2.3.8
<br/>==========================================================================
<br/>+ Smart integration with the new browser-native click to play: if a plugin
<br/>  object is manually allowed from NoScript's UI, it gets also natively 
<br/>  activated (noscript.smartClickToPlay about:config preference)
<br/>+ Improved active content identity tracking, to avoid redundant blocking
<br/>  steps across reloads
<br/>x Fixed redirections in legacy frames not being blocked (thanks "utente"
<br/>  for reporting)
<br/>x [Surrogate] Surrogate to fix broken buttons at Uniblue e-commerce site

<h2>NoScript Security Suite 2.3.7.1-signed - April 7, 2012</h2>
v 2.3.7
<br/>==========================================================================
<br/>x [ClearClick] Work-around for "rapid fire" protection interfering with
<br/>  some add-ons, such as 1Password (thanks Mike Tselikman for report) and
<br/>  FloatNotes (thanks endofmiles and Tom T. for reports)
<br/>x [ClearClick] Compatibility with Bitdefender TrafficLight (thanks
<br/>  Christopher A. M. Gerlach for reporting)
<br/>x [XSS] Enhanced InjectionChecker tolerance to certain URL patterns
<br/>  containing domain-names as parameter values (thanks gazer75 for report)

<h2>NoScript Security Suite 2.3.6.1-signed - March 26, 2012</h2>
v 2.3.6
<br/>==========================================================================
<br/>x Restored Nightly compatibility, broken by bug 719154 
<br/>+ [ClearClick] improved compatibility with Disqus widgets (thanks El Cid
<br/>  for reporting)
<br/>+ [AddressMatcher] Optimized trailing "*" in glob expressions
<br/>x Fixed origin URL detection flawed when certain wrapped URIs are loaded
<br/> (thanks Masato Kinugawa for reporting)
<br/>x [XSS] Fixed false positive with query string patterns mimicking array
<br/>  access (thanks Aicke Schulz for reporting)

<h2>NoScript Security Suite 2.3.5.1-signed - March 16, 2012</h2>
v 2.3.5
<br/>==========================================================================
<br/>x Work-around for a Flash 32-bit issue (64-bit Firefox unaffected) causing
<br/>  Google Music Player to fail (thanks DG42 for original report, Alan Baxter
<br/>  for providing a test account, all the forum staff and many users for
<br/>  their help in reproducing)
<br/>x [ABE] Fixed "Sandbox" action permanently disabling plugins, frames and
<br/>  meta refreshes on the affected tab even if document changes (thanks
<br/>  Tom T. and Patrick E. for reporting)
<br/>x [ClearClick] Better special-casing for same-site embedded objects
<br/>x [Surrogate] Global variables introduced by sandboxed surrogates are
<br/>  attached as window properties after execution to fix recently surfaced
<br/>  scope-related bugs
<br/>x [XSS] Better <a rel="nofollow" href="http://window.name">window.name</a> protection  (thanks Masato Kinugawa for report)
<br/>x [XSS] Improved detection of javascript: URL injections

<h2>NoScript Security Suite 2.3.4.1-signed - March 8, 2012</h2>
v 2.3.4
<br/>==========================================================================
<br/>x [ClearClick] Fixed subtle bug which may lead to infinite loops in some
<br/>  cases (thanks GµårÐïåñ for reporting)
<br/>  
<br/>v 2.3.3
<br/>==========================================================================
<br/>+ Improved InjectionChecker logging
<br/>x Reduced false positive rate on HTML injection checks (thanks therube for
<br/>  reporting)
<br/>x [ClearClick] Fixed clicking on some plugin content causing elements of
<br/>  the parent page to become white (thanks Markus Wienand for report)
<br/>x [ClearClick] Fixed minor bugs triggered by ABP placeholders
<br/>+ [ClearClick] Protection against partial obscuration via Flash objects
<br/>  with OS-native wmode values (thanks David Lin-Shung Huang for reporting)
<br/>x [XSS] Further sensitivity tweaks
<br/>x [XSS] Better compatibility with some 3rd party ads on Ebay
<br/>x [XSS] Fixed false positive on dotted name-value assignments chained with
<br/>  semicolons (e.g. on some Yahoo-served ads)

<h2>NoScript Security Suite 2.3.2.1-signed - Feb. 26, 2012</h2>
v 2.3.2
<br/>==========================================================================
<br/>x [XSS] Fixed regression in 2.3.2rc5 preventing some URLs from loading
<br/>x [XSS] Removed issue on Chinese pages using HZ-GB-2312 encoding (thanks
<br/>  Masato Kinugawa for reporting)
<br/>+ [XSS] Added event injection checks for scriptless pages too, in order to
<br/>  prevent edge-case execution on permissions change
<br/>x [XSS] Fixed InjectionChecker JavaScript scanning bug (thanks Masato
<br/>  Kinugawa for reporting)
<br/>x [XSS] Improved HTML detection accuracy
<br/>+ Better tagging of surrogate sandboxes for about:memory debugging
<br/>x Improved glinks surrogate

<h2>NoScript Security Suite 2.3.1.1-signed - Feb. 20, 2012</h2>
v 2.3.1
<br/>==========================================================================
<br/>+ Surrogate to let news pages escape Digg's frame
<br/>+ [ClearClick] Improved compatibility with cross-frame overlapping shadows
<br/>x Removed ClearClick bypass based on a Firefox SVG CSS filter bug (thanks
<br/>  .mario for reporting)
<br/>+ <a rel="nofollow" href="http://adf.ly">adf.ly</a> surrogate to automaticaly skip the interstitial page even if
<br/>  scripts are disabled
<br/>x Improved Google search surrogates
<br/>+ New surrogate against Google's scriptless tracking of search results
<br/>  navigation

<h2>NoScript Security Suite 2.3.1-signed - Feb. 10, 2012</h2>
v 2.3
<br/>==========================================================================
<br/>x Fixed about:newtab not considered as a local origin by ABE
<br/>+ Added blob:, about:memory and about:support to the automatic whitelist
<br/>x Added reflected script inclusion check exception for <a rel="nofollow" href="http://intensedebate.com">intensedebate.com</a>
<br/>x Fixed CSS issues on Gecko 1.8

<h2>NoScript Security Suite 2.2.9.1-signed - Feb. 4, 2012</h2>
v 2.2.9
<br/>==========================================================================
<br/>+ Right click on NoScript menu items copies the site to the clipboard, if
<br/>  any under the pointer, or all the page-related script sources prepended
<br/>  with a status mark: + for whitelisted, - for default, ! for untrusted (
<br/>  thanks Tom T. for RFE)
<br/>+ Added <a rel="nofollow" href="http://browserid.org">browserid.org</a> to the default whitelist
<br/>x Improved default whitelist update mechanism
<br/>x Fixed some Flash movies failing to load on Nightly (thanks Nova6K0 for
<br/>  reporting)
<br/>x Fixed incompatibility between surrogates / content augmentations (e.g.
<br/>  toStaticHTML) and CSP (Content Security Policy), thanks Bruce Berry for
<br/>  reporting
<br/>x NoScript won't attempt to load the release notes page if the site is
<br/>  unreachable
<br/>v 2.2.9rc1
<br/>==========================================================================
<br/>x Fixed ABE failing to recognize some FE80:* IPv6 addresses as local ones
<br/>  (thanks Mitchum Owen for report)

<h2>NoScript Security Suite 2.2.8.1-signed - Jan. 24, 2012</h2>
v 2.2.8
<br/>==========================================================================
<br/>x [ClearClick] Fixed regression, 2.2.8rc1 swallowing clicks on some nested
<br/>  documents
<br/>  
<br/>v 2.2.8rc1
<br/>==========================================================================
<br/>x [ClearClick] Protection against Koto's Cursorjacking technique disclosed
<br/>  at <a rel="nofollow" href="http://blog.kotowicz.net/2012/01/cursorjacking-again.html">http://blog.kotowicz.net/2012/01/cursorjacking-again.html</a>

<h2>NoScript Security Suite 2.2.7.1-signed - Jan. 18, 2012</h2>
v 2.2.7
<br/>==========================================================================
<br/>x [ClearClick] Protection against two steps interaction attack based on
<br/>  HTML5 DnD (thanks .mario for reporting)

<h2>NoScript Security Suite 2.2.6.1-signed - Jan. 12, 2012</h2>
v 2.2.6
<br/>==========================================================================
<br/>x [XSS] Fixed sanitization reporting bug
<br/>&nbsp;
<br/>v 2.2.6rc1
<br/>==========================================================================
<br/>+ [XSS] Protection against new kind of response splitting + XSS combo
<br/>  attack responsibly disclosed by Mike Brooks

<h2>NoScript Security Suite 2.2.5.1-signed - Jan. 3, 2012</h2>
v 2.2.5
<br/>==========================================================================
<br/>x [ClearClick] Better compatibility with recent Disqus widget versions
<br/>&nbsp;
<br/>v 2.2.5rc3
<br/>==========================================================================
<br/>x [XSS] Better compatibility with Verified by VISA (<a rel="nofollow" href="http://www.securesuite.net">www.securesuite.net</a>)
<br/>x Tentative work-around for bug 710170
<br/>&nbsp;
<br/>v 2.2.5rc2
<br/>==========================================================================
<br/>x Work around for Linux tooltips obstructing the embedding unblocking
<br/>  confirmation dialog
<br/>&nbsp;
<br/>v 2.2.5rc1
<br/>==========================================================================
<br/>x Work around for Mozilla bug 712649

<h2>NoScript Security Suite 2.2.4.1-signed - Dec. 18, 2011</h2>
v 2.2.4
<br/>==========================================================================
<br/>x Fixed some localizations having newlines replaced with 'n' characters
<br/>&nbsp;
<br/>v 2.2.4rc3
<br/>==========================================================================
<br/>x Fixed regression in SWFObject emulation for plugin placeholders
<br/>x Fixed top-level surrogates broken by ECMAv5 version specification
<br/>&nbsp;
<br/>v 2.2.4rc2
<br/>==========================================================================
<br/>+ [ClearClick] Enhanced protection against same-window timing attacks
<br/>   with moving pointer (thanks Michal Zalewski for PoC)
<br/>x SyntaxChecker's JavaScript version can be configured per-instance
<br/>  (default "1.5")
<br/>x [Surrogate] JavaScript version set to "ECMAv5"
<br/>x [Surrogate] Use "ECMAv5" for early syntax checks
<br/>&nbsp;
<br/>v 2.2.4rc1
<br/>==========================================================================
<br/>x Fixed reflected script inclusion false positive on redirections
<br/>- Removed "Forbid Web Bugs", which cannot be reliably enforced anymore
<br/>  because of speculative parsing
<br/>x Restored <a rel="nofollow" href="http://wlxrs.com">wlxrs.com</a> in the default whitelist (it had
<br/>  accidentally changed back to two subdomains)
<br/>x Fixed resetting options doesn't erase the untrusted blacklist until
<br/>  browser restart (thanks ddigas for reporting)

<h2>NoScript Security Suite 2.2.3.1-signed - Dec. 2, 2011</h2>
v 2.2.3rc4
<br/>==========================================================================
<br/>+ Configuration import/export directory is persisted across sessions
<br/>&nbsp;
<br/>v 2.2.3rc3
<br/>==========================================================================
<br/>+ Generalized checks on drag and drop payloads
<br/>+ [XSS] Tightened checks on reflected javascript: URIs   
<br/>&nbsp;
<br/>v 2.2.3rc2
<br/>==========================================================================
<br/>x [Surrogate] DOMContentLoad listeners on windows (thanks al_9x for RFE)
<br/>&nbsp;
<br/>v 2.2.3rc1
<br/>==========================================================================
<br/>+ [Surrogate] Capturing DOMContentLoad listeners (thanks al_9x for RFE)
<br/>+ [Surrogate] More homogeneous treatment for file-based surrogates (thanks
<br/>  al_9x for RFE)
<br/>&nbsp;
<br/>v 2.2.2rc5
<br/>==========================================================================
<br/>+ [Surrogate] Wrapped in lexical scoped blocks scripts also when debug
<br/>  mode is on (thanks al_9x for RFE)
<br/>+ [Surrogate] Early one-time syntax checks on setup (thanks al_9x for RFE)
<br/>x [ClearClick] Better compatibility with some GMail embeddings
<br/>x [XSS] Better compatibility with Visual Studio in-browser documentation
<br/>x [ClearClick] Fixed Adblock Plus causing false positives on Fx 3.6
<br/>x Improved HTML 5 DnD XSS protection (thanks Soroush Dalili for reporting)
<br/>x [Locale] Latvian (thanks gymka)
<br/>&nbsp;
<br/>v 2.2.2rc4
<br/>==========================================================================
<br/>x Protection against a new XSS technique based on HTML 5 DnD (thanks
<br/>  Soroush Dalili for reporting)
<br/>&nbsp;
<br/>v 2.2.2rc3
<br/>==========================================================================
<br/>x Better compatibility with credit card verification systems
<br/>x [ABE] Fixed ruleset disablement status not surviving browser restarts
<br/>  (thanks ssj100 for reporting)
<br/>&nbsp;
<br/>v 2.2.2rc2
<br/>==========================================================================
<br/>x Fixed escaped_fragment handling issue with proxies (thanks sourcejedi
<br/>  for reporting)
<br/>x Turned remaining channel URI modification instances into
<br/>  ChannelReplacement clients
<br/>&nbsp;
<br/>v 2.2.2rc1
<br/>==========================================================================
<br/>+ [XSS] Explicit check for potentially dangerous SMIL elements (thanks
<br/>  .mario for suggestion)
<br/>+ Protection against scriptless keylogging (thanks .mario for reporting)

<h2>NoScript Security Suite 2.2.1.1-signed - Nov. 20, 2011</h2>
v 2.2.1
<br/>==========================================================================
<br/>+ [Locale] Updated he-il (thanks baryoni)
<br/>x [ClearClick] Fixed incompatibility with the FoxTab add-on
<br/>&nbsp;
<br/>v 2.2.1rc2
<br/>==========================================================================
<br/>+ [XSS] Deeper decoding on sanitization (thanks .mario for reporting)
<br/>&nbsp;
<br/>v 2.2.1rc1
<br/>==========================================================================
<br/>+ [XSS] More accurate recursive decoding (thanks .mario for reporting)

<h2>NoScript Security Suite 2.2.1-signed - Nov. 15, 2011</h2>
v 2.2
<br/>==========================================================================
<br/>+ [ClearClick] Improved protection against Clickjacking on nested windowed
<br/>  Flash targets (thanks Sommerrain and Tom T for reporting)

<h2>NoScript Security Suite 2.1.9.1-signed - Nov. 7, 2011</h2>
v 2.1.9
<br/>==========================================================================
<br/>x [Surrogate] fixed breakage caused by "1.8.1" JavaScript version spec
<br/>  used instead of "1.8"
<br/>&nbsp;
<br/>v 2.1.9rc3
<br/>==========================================================================
<br/>+ [Surrogate] JavaScript 1.8 support (thanks al_9x for RFE)
<br/>+ Better heuristic for XSSI detection
<br/>- Removed previous work-around XSSI exceptions
<br/>x Fixed some DOM traversal bugs (thanks al_9x for reporting)
<br/>x Refined Google search meta refresh blocking exception
<br/>x Added meta refresh blocking exception for <a rel="nofollow" href="http://t.co">t.co</a> (Twitter URL shortener)
<br/>  
<br/>v 2.1.9rc2
<br/>==========================================================================
<br/>x Work-around for XSSI checks breaking some Yahoo! Mail features
<br/>  
<br/>v 2.1.9rc1
<br/>==========================================================================
<br/>+ New noscript.forbidMetaRefresh.exceptions url pattern preference
<br/>+ Meta refresh blocking exception for Google Search (blank page shown
<br/>  otherwise if meta refresh blocking is enabled, cookies are disabled for
<br/>  Google and Google Search scripting is forbidden)

<h2>NoScript Security Suite 2.1.8.1-signed - Oct. 27, 2011</h2>
v 2.1.8
<br/>==========================================================================
<br/>+ Improved anti-popunder built-in surrogate
<br/>x Fixed object autowiring upon placeholder activation regressed by recent
<br/>  surrogate sandboxing changes
<br/>&nbsp;
<br/>v 2.1.8rc2
<br/>==========================================================================
<br/>+ noscript.xss.checkInclusions about:config preference (default true)
<br/>  controls whether the new protection against reflected cross-site script
<br/>  inclusion (XSSI) is enabled or not (thanks al_9x for RFE)
<br/>+ noscript.xss.checkInclusions.exceptions about:confing preference to
<br/>  disable XSSI checks for certain script sources (thanks al_9x for RFE)
<br/>  
<br/>v 2.1.8rc1
<br/>==========================================================================
<br/>+ Protection against reflected script inclusion (thanks tlu for reporting)
<br/>x Fixed logged error message on permissions change (thanks Archaeopteryx
<br/>  for reporting)

<h2>NoScript Security Suite 2.1.7.1-signed - Oct. 21, 2011</h2>
v 2.1.7
<br/>==========================================================================
<br/>x [ABE] Fixed subrequests matching an Anon action rule not being shown in
<br/>  the logs if already anonymized by the browser
<br/>&nbsp;
<br/>v 2.1.7rc1
<br/>==========================================================================
<br/>x Fixed error console noise regression from menu fixes (thanks al_9x and
<br/>  Archaeopteryx for reporting)
<br/>&nbsp;
<br/>v 2.1.6rc2
<br/>==========================================================================
<br/>+ noscript.keys.tempAllowPage about:config preference to configure a
<br/>  keyboard shortcut for "Temporarily allow all this page"
<br/>+ noscript.keys.revokeTemp about:config preference to configure a keyboard
<br/>  shortcut for "Revoke temporary permissions"
<br/>+ noscript.menuAccelerators about:config preference to switch keyboard
<br/>  accelerators for "(Temporary) allow all this page" menu items on/off
<br/>x Fixed notifications get all shown on the top in a tab where one
<br/>  notification has already been shown on the top
<br/>x Fixed quasi-leak (zombie compartment) after using the NoScript menu on
<br/>  a page where embedded content is present, until the menu is opened on
<br/>  another page (thanks Archaeopteryx for reporting)
<br/>x [ABE] Fixed Anonymize actions logged twice (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.6rc1
<br/>==========================================================================
<br/>x [Surrogate] Fixed sandboxed surrogates unable to set global variables

<h2>NoScript Security Suite 2.1.5.1-signed - Oct. 12, 2011</h2>
v 2.1.5
<br/>==========================================================================
<br/>x Improved object wiring emulation on placeholder activation (thanks al_9x
<br/>  for report and code)
<br/>&nbsp;
<br/>v 2.1.5rc3
<br/>==========================================================================
<br/>+ [Surrogate] noscript.surrogate.sandbox preference to control the
<br/>  execution method for inclusion surrogates
<br/>&nbsp;
<br/>v 2.1.5rc2
<br/>==========================================================================
<br/>x Work-around for CORS incompatibility with internal redirects
<br/>- Removed legacy threading management support
<br/>&nbsp;
<br/>v 2.1.5rc1
<br/>==========================================================================
<br/>x [Surrogate] Surrogates triggered by content policy calls get executed in
<br/>  a sandbox
<br/>x Moved SWFObject and Silverlight patching to early scripts
<br/>x Replaced every reference to XHR's "on..." event handler properties with
<br/>  their addEventListener() counterparts, to cope with bug 687332 fallouts

<h2>NoScript Security Suite 2.1.4.1-signed - Sept. 28, 2011</h2>
v 2.1.4
<br/>==========================================================================
<br/>x Fixed speculative parsing causing inclusion surrogates to be executed
<br/>  twice (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.4rc1
<br/>==========================================================================
<br/>x More efficient and Gecko-friendly HTTPS enforcing method

<h2>NoScript Security Suite 2.1.2.8.1-signed - Sept. 12, 2011</h2>
v 2.1.2.8
<br/>==========================================================================
<br/>x Fixed placeholders hard to activate on HTML 5 Youtube videos
<br/>&nbsp;
<br/>v 2.1.2.8rc2
<br/>==========================================================================
<br/>x [XSS] Improved out-of-the-box compatibility with some Facebook games
<br/>x Fixed plugin blocking not working sometimes on file:// pages
<br/>  loadeded before any network activity (thanks nagan for reporting)
<br/>&nbsp;
<br/>v 2.1.2.8rc1
<br/>==========================================================================
<br/>+ Google Plus One surrogate (thanks al_9x for code)
<br/>- Removed <a rel="nofollow" href="http://t.co">t.co</a> surrogate, since Twitter implemented a NOSCRIPT fallback

<h2>NoScript Security Suite 2.1.2.7.1-signed - Aug. 28, 2011</h2>
v 2.1.2.7
<br/>==========================================================================
<br/>x Better load progress feedback for hosts which are not DNS-cached yet
<br/>  (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.2.7rc3
<br/>==========================================================================
<br/>x Improved Google Analytics surrogate (thanks al_9x for code)
<br/>x More intuitive handling of the "live" behavior of the ABE ruleset editor
<br/>  when syntax errors are introducd (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.2.7rc2
<br/>==========================================================================
<br/>x Fixed OBJECT document inclusions failing under some circumstances
<br/>&nbsp;
<br/>v 2.1.2.7rc1
<br/>==========================================================================
<br/>+ Prevent any website from embedding view-source URIs inside frames
<br/>x Firefox 9.0a1 compatibility

<h2>NoScript Security Suite 2.1.2.6.1-signed - Aug. 11, 2011</h2>
v 2.1.2.6
<br/>==========================================================================
<br/>x Temporarily disabled anti-anti-adblocker surrogate on any site except
<br/>  those explicitly added to noscript.surrogate.ab.sources preference, as a
<br/>  work-around for bug 677652
<br/>x Lazy initialization is deferred also when a file:// URL is loaded as the
<br/>  home page
<br/>&nbsp;
<br/>v 2.1.2.6rc7
<br/>==========================================================================
<br/>x More accurate work around for bug 677050
<br/>&nbsp;
<br/>v 2.1.2.6rc6
<br/>==========================================================================
<br/>x Work around for Nightly bug 677050
<br/>&nbsp;
<br/>v 2.1.2.6rc5
<br/>==========================================================================
<br/>x Fixed rapid-fire cross-site interaction protection interfering with some
<br/>  keyboard-based UI patterns
<br/>&nbsp;
<br/>v 2.1.2.6rc4
<br/>==========================================================================
<br/>x Fixed Firefox's built-in feed renderer broken unless about:feeds is
<br/>  whitelisted
<br/>  
<br/>v 2.1.2.6rc3
<br/>==========================================================================
<br/>x Plugin origin checks now account for multiple extra-codebase archives
<br/>x Work around for HTTPS script inclusions on JavaScript-disabled pages
<br/>  being loaded, albeit not executed (thanks al_9x for reporting)
<br/>x [ClearClick] Tentative work-around for ABP's "Block..." tab causing
<br/>  false positives on nested documents (thanks GµårÐïåñ for reporting)
<br/>&nbsp;
<br/>v 2.1.2.6rc2
<br/>==========================================================================
<br/>x Work-around for content policy inconsistencies in Java applet origins
<br/>  handling (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.2.6rc1
<br/>==========================================================================
<br/>+ Surrogate for the <a rel="nofollow" href="http://t.co">t.co</a> Twitter URL shortener, which would otherwise
<br/>  require JavaScript
<br/>+ USER ruleset conveniently pre-selected when ABE options are opened
<br/>x Improved invisible links detection approach

<h2>NoScript Security Suite 2.1.2.5.1-signed - July 28, 2011</h2>
v 2.1.2.5
<br/>==========================================================================
<br/>x Fixed bookmarklets from sidebars not working on JS-disabled pages
<br/>+ Improved Twitter surrogate for Fx 3.x
<br/>&nbsp;
<br/>v 2.1.2.4
<br/>==========================================================================
<br/>+ Ubuntu-specific startup optimization
<br/>&nbsp;
<br/>v 2.1.2.4rc5
<br/>==========================================================================
<br/>+ Halved startup time (&lt; 50ms) by deferring costly initialitations to
<br/>  first remote request and fastloading the rest
<br/>x Minor tweaks to Twitter surrogate
<br/>&nbsp;
<br/>v 2.1.2.4rc4
<br/>==========================================================================
<br/>+ Script Surrogate execution also for ABE-denied script requests (
<br/>  thanks al_9x for RFE)
<br/>+ Script Surrogate for Twitter inclusions (thanks al_9x)
<br/>x Improved compatibility with Readability
<br/>x Fixed switching from one rule to another in the Rulesets box looses
<br/>  changes in the current rule (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.2.4rc3
<br/>==========================================================================
<br/>x Fixed url bar regression from rc2
<br/>&nbsp;
<br/>v 2.1.2.4rc2
<br/>==========================================================================
<br/>x [ClearClick] noscript.clearClick.rapidFireCheck about:config preference
<br/>  to control whether rapid fire event checking should be enabled or not
<br/>x [Bookmarks] Fixed javascript-based keyword bookmarklet not being ran on
<br/>  Fx 6 and above (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.2.4rc1
<br/>==========================================================================
<br/>x [ClearClick] Restored compatibility with <a rel="nofollow" href="http://bit.ly">bit.ly</a> (now <a rel="nofollow" href="http://bitly.com">bitly.com</a>)

<h2>NoScript Security Suite 2.1.2.3.1-signed - July 13, 2011</h2>
v 2.1.2.3
<br/>==========================================================================
<br/>x [ClearClick] Refactoring and isolation of the rapid fire protection
<br/>&nbsp;
<br/>v 2.1.2.3rc2
<br/>==========================================================================
<br/>x [ClearClick] Further refinement of rapid fire detection on tab switching 
<br/>&nbsp;
<br/>v 2.1.2.3rc1
<br/>==========================================================================
<br/>x [ClearClick] Fixed delay on first event response after some kinds of tab
<br/>  switching
<br/>&nbsp;
<br/>v 2.1.2.2
<br/>==========================================================================
<br/>x [ClearClick] Fixed false positives due to backwards incompatibilities
<br/>  with Fx 3.5 and below (thanks chas35 for reporting)
<br/>x [Nightly compat] Fixed import/export broken by nsIJSON interface changes
<br/>  in recent nightly builds (thanks happy-dude for reporting)
<br/>&nbsp;
<br/>v 2.1.2.1
<br/>==========================================================================
<br/>x Fixed rapid fire cross-site interaction protection interfering with
<br/>  keyboard-based tab switching (thanks tikl for reporting)

<h2>NoScript Security Suite 2.1.1.2.1-signed - June 26, 2011</h2>
v 2.1.1.2 (same as 2.1.2rc0)
<br/>==========================================================================
<br/>x Fixed conflict with Firebug console
<br/>x Removed legacy code in content policy and ClearClick
<br/>&nbsp;
<br/>v 2.1.1.2rc9
<br/>==========================================================================
<br/>x Fixed surrogates causing duplicate history entries for some sites on
<br/>  Firefox 5
<br/>x Work around for bug 666371 breaking popunder surrogate and legitimate
<br/>  popups on some sites
<br/>&nbsp;
<br/>v 2.1.1.2rc8
<br/>==========================================================================
<br/>x Work-around for Mac OS X filepicker in Firefox 5 preventing exported
<br/>  configuration files from being reimported
<br/>&nbsp;
<br/>v 2.1.1.2rc7
<br/>==========================================================================
<br/>x Work-around for Nightly bug breaking the "View image" command
<br/>x Improved Google Analytics surrogate
<br/>&nbsp;
<br/>v 2.1.1.2rc6
<br/>==========================================================================
<br/>+ HTML 5 media blocking extended to Mozilla's audio API extension (thanks
<br/>  al_9x for RFE)
<br/>x Improved handling of resource prefetching through object elements
<br/>x Removed <a rel="nofollow" href="http://msc.wlxrs.com">msc.wlxrs.com</a> and <a rel="nofollow" href="http://js.wlxrs.com">js.wlxrs.com</a>, adding just <a rel="nofollow" href="http://wlxrs.com">wlxrs.com</a> to the
<br/>  default whitelist and to the whitelists of Hotmail users, after Microsoft
<br/>  explained that this is the future-proof permission needed to ensure
<br/>  compatibility with the Live webmail
<br/>&nbsp;
<br/>v 2.1.1.2rc5
<br/>==========================================================================
<br/>x Full page reload is not triggered anymore when invisible plugin objects
<br/>  are activated if the parent page has been loaded by a POST HTTP request
<br/>  (thanks al_9x for RFE)
<br/>x Full page reload is not triggered anymore on invisible frame activation
<br/>  (thanks al_9x for RFE)
<br/>x Fixed "Blocked Objects" menu missing on Hotmail inbox (thanks therube
<br/>  for reporting)
<br/>x Object elements used to prefetch JavaScript and CSS content are not
<br/>  blocked anymore, provided that the parent is whitelisted, This behavior
<br/>  can be disabled in about:config, noscript.allowCachingObjects (thanks
<br/>  al_9x for RFE)
<br/>&nbsp;
<br/>v 2.1.1.2rc4
<br/>==========================================================================
<br/>+ Added <a rel="nofollow" href="http://msc.wlxrs.com">msc.wlxrs.com</a> to the default whitelist as requested by the Hotmail
<br/>  team (new domain required for Hotmail to work)
<br/>+ One-time merge of the default whitelist to integrate services already
<br/>  whitelisted as needed (e.g. <a rel="nofollow" href="http://hotmail.com">hotmail.com</a> to imply <a rel="nofollow" href="http://msc.wlxrs.com">msc.wlxrs.com</a>)
<br/>x Work-around for scripts served from <a rel="nofollow" href="http://amazonaws.com">amazonaws.com</a> having wrong media
<br/>  type sometimes
<br/>&nbsp;
<br/>v 2.1.1.2rc3
<br/>==========================================================================
<br/>x Fixed frame in-place activation causing the content to be loaded inside
<br/>  a nested iframe (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.1.1.2rc2
<br/>==========================================================================
<br/>x [XSS] Work-around for an unfixable (JavaScript fragments get actually
<br/>  uploaded cross-site) false positive on Verizon login (thanks John Dwyer
<br/>  for reportng)
<br/>&nbsp;
<br/>v 2.1.1.2rc1
<br/>==========================================================================
<br/>x Fixed onLocationChange2 missing in nsIWebProgressListener2 impl. causing
<br/>  noise on trunk after bug 311007 landed (thanks Hydraxr for report)

<h2>NoScript Security Suite 2.1.1.1.1-signed - June 9, 2011</h2>
v 2.1.1.1
<br/>==========================================================================
<br/>+ Improved embedded object activation on Javascript-enabled pages via
<br/>  dynamic method proxies (thanks al_9x for RFE)
<br/>&nbsp;
<br/>v 2.1.1.1rc2
<br/>==========================================================================
<br/>x [XSS] removed false positive at Well Fargo's login
<br/>&nbsp;
<br/>v 2.1.1.1rc1
<br/>==========================================================================
<br/>x Reduced request garbage collection frequency

<h2>NoScript Security Suite 2.1.1.1-signed - May 29, 2011</h2>
v 2.1.1
<br/>==========================================================================
<br/>x Fixed toolbar button hidden in popup windows (thanks Steven Roddis for
<br/>  reporting)
<br/>&nbsp;
<br/>v 2.1.0.6rc14
<br/>==========================================================================
<br/>x Fixed double HTTP requests sent sometimes for document requests just
<br/>  after DNS cache invalidation (thanks Lekensteyn and SLED for reporting)
<br/>x Removed NoScript and FlashGot download pages and added Yahoo! Mail as
<br/>  ClearClick exception, in order to prevent false positives in the message
<br/>  panel (thanks be and sabret00the for reporting)
<br/>x Fixed conflict with IE Tab 2 causing new tab not to open URLs entered
<br/>  in the address bar (thanks mc for reporting)
<br/>&nbsp;
<br/>v 2.1.0.6rc13
<br/>==========================================================================
<br/>x Fixed placeholders broken on trunk after fix for Gecko's bug 308590
<br/>&nbsp;
<br/>v 2.1.0.6rc12
<br/>==========================================================================
<br/>+ Added <a rel="nofollow" href="http://paypal.com">paypal.com</a> and <a rel="nofollow" href="http://paypalobjects.com">paypalobjects.com</a> to the default whitelist, to cope
<br/>  with the new in-page contribution setup at AMO and reduce XSS risks
<br/>+ Improved toStaticHTML() emulation (thanks .mario for reporting)
<br/>&nbsp;
<br/>v 2.1.0.6rc11
<br/>==========================================================================
<br/>x Fixed broken toolbar button on first window opened during first run ever 
<br/>  on Firefox 4.x (thanks al_9x for reporting)
<br/>  
<br/>v 2.1.0.6rc10
<br/>==========================================================================
<br/>x Tentative fix for double HTTP requests sent sometimes upon DNS refresh
<br/>x Fixed XSS false positive on Google's Talk Gadget loading
<br/>&nbsp;
<br/>v 2.1.0.6rc9
<br/>==========================================================================
<br/>+ Improved bookmarklet execution handling (thanks @nomaded for reporting)
<br/>= Compatibility bump for Fx 7.0a1
<br/>&nbsp;
<br/>v 2.1.0.6rc8
<br/>==========================================================================
<br/>+ Further and less likely ASP-related tricks in InjectionChecker (thanks
<br/>  Seroush Dalili for reporting)
<br/>x Fixed bookmarklets and JavaScript URLs broken in about:blank unless
<br/>  imports are allowed (thanks Nick Ang for reporting)
<br/>+ JavaScript URL bar shortcuts are now treated as bookmarklet and executed
<br/>  by default (thanks @nomaded for reporting)
<br/>&nbsp;
<br/>v 2.1.0.6rc7
<br/>==========================================================================
<br/>x More ASP idiosyncrasies taken in account by InjectionChecker (thanks
<br/>  Soroush Dalili for reporting)
<br/>  
<br/>v 2.1.0.6rc6
<br/>==========================================================================
<br/>x Fixed false positive in anti-exfiltration HTML injection checks
<br/>&nbsp;
<br/>v 2.1.0.6rc5
<br/>==========================================================================
<br/>x Fixed rc2 frame blocking regression (thanks  milithruldur for report)
<br/>&nbsp;
<br/>v 2.1.0.6rc4
<br/>==========================================================================
<br/>+ Per-site WebGL blocking support (WebGL is implicitly disabled wherever
<br/>  JavaScript is not allowed; it can be blocked on any other site by
<br/>  checking "NoScript Options|Embedding|Forbid WebGL", and allowed per-site
<br/>  by clicking on a placeholder of the blocked canvas or by using the
<br/>  "Blocked objects..." menu if no canvas had been inserted in the page)
<br/>&nbsp;
<br/>v 2.1.0.6rc3
<br/>==========================================================================
<br/>x Work-around for Cocoon add-on being broken by NoScript's early usage
<br/>  of the IO Service (thanks Dan Staudigel for reporting)
<br/>&nbsp;
<br/>v 2.1.0.6rc2
<br/>==========================================================================
<br/>x Fixed plugin documents can't be opened in NewsFox if embedding
<br/>  restrictions are in place (thanks Mc for reporting)
<br/>&nbsp;
<br/>v 2.1.0.6rc1
<br/>==========================================================================
<br/>x Fixed broken anti image exfiltration rules in HTML injection checks on
<br/>  noscripted pages (thanks Gareth Heyes for reporting)

<h2>NoScript Security Suite 2.1.0.5.1-signed - May 16, 2011</h2>
v 2.1.0.5
<br/>==========================================================================
<br/>x Fixed recent memory optimizations breaking compatibility with some
<br/>  extensions (thanks Alan Baxter for reporting)
<br/>&nbsp;
<br/>v 2.1.0.5rc1
<br/>==========================================================================
<br/>x Work-around for a Seamonkey initialization timing issue
<br/>&nbsp;
<br/>v 2.1.0.4
<br/>==========================================================================
<br/>+ Improved performance and memory efficiency of cross-site checks
<br/>x Removed redundant primary origin from ABE messages
<br/>x More verbose initialization error reporting
<br/>&nbsp;
<br/>v 2.1.0.4rc10
<br/>==========================================================================
<br/>x Fixed memory leak on Nightly when watching the movie at <a rel="nofollow" href="http://ro.me">http://ro.me</a>
<br/>  (thanks _nil and therube for reporting)
<br/>&nbsp;
<br/>v 2.1.0.4rc9
<br/>==========================================================================
<br/>x Fixed Script Surrogate execution breaking some framesets
<br/>x Fixed executing an interactive bookmarklet and closing current tab
<br/>  during execution keeps scripts globally allowed
<br/>+ Disabled execution of javascript: and data: URLs typed or
<br/>  pasted in the address bar (noscript.allowURLBarJS preference)
<br/>+ Disabled execution of non-whitelisted scripts imported during execution
<br/>  of javascript: and data: URLs typed or pasted in the address bar
<br/>  (noscript.allowURLBarImports preference)
<br/>+ Work around for Verizon's cache serving scripts with wrong media type
<br/>&nbsp;
<br/>v 2.1.0.4rc8
<br/>==========================================================================
<br/>x Fixed NoScript icon disappearing from add-on bar when mode == "text"
<br/>&nbsp;
<br/>v 2.1.0.4rc7
<br/>==========================================================================
<br/>x Better work-around for <a rel="nofollow" href="http://bit.ly">bit.ly</a> sidebar triggering ClearClick warnings
<br/>  (thanks Markus387 for reporting)
<br/>&nbsp;
<br/>v 2.1.0.4rc6
<br/>==========================================================================
<br/>x Work-around for <a rel="nofollow" href="http://bit.ly">bit.ly</a> sidebar triggering ClearClick warnings
<br/>x Fixed placeholders with undersized type icon regression
<br/>&nbsp;
<br/>v 2.1.0.4rc5
<br/>==========================================================================
<br/>x Fixed Seamonkey hanging on some pages (thanks therube for reporting)
<br/>&nbsp;
<br/>v 2.1.0.4rc4
<br/>==========================================================================
<br/>x Fixed labels being shown for NoScript buttons on the add-on bar in some
<br/>  configurations (thanks baciok for reporting)
<br/>&nbsp;
<br/>v 2.1.0.4rc3
<br/>==========================================================================
<br/>x Fixed minimum placeholder size not applied when embeddings have "auto"
<br/>  as their computed CSS width or height (thanks al_9x for reporting)
<br/>  
<br/>v 2.1.0.4rc2
<br/>==========================================================================
<br/>+ On scriptless pages, empty forms meant to be submitted via JavaScript
<br/>  are automatically augmented with a submit button labeled after the
<br/>  destination URL (thanks timeless for RFE)
<br/>&nbsp;
<br/>2.1.0.4rc1
<br/>==========================================================================
<br/>x Changed the noscript.forbidXBL default to 1 (OK for current Fx versions)
<br/>  in order to avoid Lotus Mail issues (thanks Tina for reporting)
<br/>x [XSS] Fixed a false positive involving Amazon mp3 checkout (thanks Dan
<br/>  Loomis for reporting)

<h2>NoScript Security Suite 2.1.0.3.1-signed - April 23, 2011</h2>
v 2.1.0.3
<br/>==========================================================================
<br/>x [L10n] Updated ro
<br/>x Restored some locales gone missing in previous dev build
<br/>&nbsp;
<br/>v 2.1.0.3rc5
<br/>==========================================================================
<br/>x Improved Google Analytics surrogate
<br/>x Experimental built-in Firefox Sync turned off by default (can be enabled
<br/>  through the noscript.sync.enabled about:config preference)
<br/>x Tentative fix for some synchronization annoyances
<br/>&nbsp;
<br/>v 2.1.0.3rc4
<br/>==========================================================================
<br/>x Suppress any dump() logging when in Private Browsing mode, in order to
<br/>  avoid X session log leakages on Linux
<br/>x Tentative fix for a RequestWatchdog lazy initialization race condition
<br/>  (thanks Daniel Holbert for reporting)
<br/>&nbsp;
<br/>v 2.1.0.3rc3
<br/>==========================================================================
<br/>+ Warning when user closes the options dialog leaving broken ABE ruleset
<br/>  behind (thanks al_9x for report)
<br/>&nbsp;
<br/>v 2.1.0.3rc2
<br/>==========================================================================
<br/>x Fixed Yahoo Toolbar breaking first browser window if NoScript 2.1.0.2 is
<br/>  installed
<br/>x Various additional startup optimizations
<br/>&nbsp;
<br/>v 2.1.0.3rc1
<br/>==========================================================================
<br/>x Added some null checks to prevent Venkman noise (thanks timeless)

<h2>NoScript Security Suite 2.1.0.2.1-signed - April 9, 2011</h2>
2.1.0.2
<br/>==========================================================================
<br/>x [XSS] Improved XML prescreening
<br/>&nbsp;
<br/>v 2.1.0.2rc5
<br/>==========================================================================
<br/>x Halved startup time
<br/>&nbsp;
<br/>v 2.1.0.2rc4
<br/>==========================================================================
<br/>x More robust surrogate execution
<br/>&nbsp;
<br/>v 2.1.0.2rc3
<br/>==========================================================================
<br/>+ Label automatically hidden when NoScript's toolbar buttons are added to
<br/>  the add-ons bar
<br/>&nbsp;
<br/>v 2.1.0.2rc2
<br/>==========================================================================
<br/>x Fixed AddressMatcher broken by RegExp changes in latest Minefield (
<br/>  thanks linuser for reporting)
<br/>  
<br/>v 2.1.0.2rc1
<br/>==========================================================================
<br/>x Fixed ABE options panel regressions due to the changed storage (thanks
<br/>  al_9x for reporting)

<h2>NoScript Security Suite 2.1.0.1.1-signed - March 26, 2011</h2>
v 2.1.0.1
<br/>==========================================================================
<br/>x Removed <a rel="nofollow" href="http://googlesyndication.com">googlesyndication.com</a> from the default whitelist
<br/>x Added <a rel="nofollow" href="http://securecode.com">securecode.com</a> ("Verified by VISA") to the default whitelist, in
<br/>  order to prevent surprise transaction failures 
<br/>x [XSS] Exception for POST requests coming from a secure albeit not
<br/>  whitelisted Verified by Visa (<a rel="nofollow" href="http://securecode.com">securecode.com</a>) origin
<br/>x [ABE] Fixed bug causing excessive console noise from permissive rules
<br/>x Updated locales
<br/>&nbsp;
<br/>v 2.1
<br/>==========================================================================
<br/>x Fixed various Script Surrogate inconsistencies
<br/>&nbsp;
<br/>v 2.1.0rc6
<br/>==========================================================================
<br/>+ [ABE] Rulesets now are stored as preferences rather than files for
<br/>  faster startup (less I/O) and more consistent settings management
<br/>+ [ABE/Sync] Rulesets are integrated into Firefox Sync for preferences too
<br/>x On first Firefox 4 run toolbar icon now gets added to the add-on bar
<br/>  instead of the navigation bar if the latter is invisible, even if the
<br/>  former is invisible as well (many users seem to expect it there)
<br/>x Fixed additional toolbar buttons too wide when labels are shown
<br/>x Fixed some Script Surrogate regressions (thanks al_9x for reporting)
<br/>x Work around for alert on new windows due to Mozilla's bug 608628
<br/>x Fixed placeholder not shown for embed elements placed inside invalid
<br/>  object elements (thanks al_9x for reporting) 
<br/>&nbsp;
<br/>v 2.1.0rc5
<br/>==========================================================================
<br/>+ Firefox Sync integration can be switched off through the
<br/>  noscript.sync.enabled about:config preference
<br/>x [XSS] Fixed false positive regression from recent Firefox 4
<br/>  optimizations (thanks m_c for reporting) 
<br/>&nbsp;
<br/>v 2.1.0rc4
<br/>==========================================================================
<br/>x Further version-specific Script Surrogate optimizations
<br/>&nbsp;
<br/>v 2.1.0rc3
<br/>==========================================================================
<br/>+ First shot at Firefox Sync native integration, synchronizes everything
<br/>  except custom ABE rules
<br/>x [ABE] Optimized origin tracing
<br/>+ [ABE] INC(MEDIA) subtype matching HTML5 video and audio requests 
<br/>+ [ABE] INC(FONT) subtype matching font embedding requests
<br/>x Huge refactoring in regular expression usage to optimize for Fx 4
<br/>x Script Surrogate optimization
<br/>&nbsp;
<br/>v 2.1.0rc2
<br/>==========================================================================
<br/>x [ABE] Work-around for some Java plugin requests bypassing HTTP observers
<br/>  (thanks tlu for reporting)
<br/>+ [ABE] Media HTML elements and plugin sub-requests are matched by the OBJ
<br/>  inclusion subtype
<br/>+ [ABE] Font requests are matched by the OTHER inclusion subtype
<br/>&nbsp;
<br/>v 2.1.0rc1
<br/>==========================================================================
<br/>x Fixed iframe content being sometimes opened in new tabs on Fx 4 when ABE
<br/>  is enabled and DNS cache is missed

<h2>NoScript Security Suite 2.0.9.9.1-signed - March 5, 2011</h2>
v 2.0.9.9
<br/>==========================================================================
<br/>x Fixed spaces in ipecho response breaking WAN IP detection with one of
<br/>  the mirrors
<br/>+ Experimental built-in profiler for debugging purposes
<br/>&nbsp;
<br/>v 2.0.9.9rc5
<br/>==========================================================================
<br/>+ Compatibility with <a rel="nofollow" href="http://Fire.fm">Fire.fm</a>
<br/>+ [XSS] Compatibility with latest Readability
<br/>x Tentative work-around for a WAN IP detection issue after sleep/wakeup
<br/>&nbsp;
<br/>v 2.0.9.9rc4
<br/>==========================================================================
<br/>+ Forced text-plain on documents which miss a content-type header but send
<br/>  "X-Content-Type-Options: nosniff"
<br/>+ Increased compatibility of the X-Content-Options implementation
<br/>&nbsp;
<br/>v 2.0.9.9rc3
<br/>==========================================================================
<br/>x Work-around for surrogates not being executed on latest Fx 4 builds
<br/>x X-Content-Options implementation more compatible with Browserscope
<br/>&nbsp;
<br/>v 2.0.9.9rc2
<br/>==========================================================================
<br/>x Fixed AJAX fallback last-minute breakage (thanks dhouwn for report)
<br/>&nbsp;
<br/>v 2.0.9.9rc1
<br/>==========================================================================
<br/>+ Improved XSS filter to protect against potential risks from new HTML 5
<br/>  features
<br/>+ AJAX fallback support via Google's _escaped_fragment_ recommendation,
<br/>  can be disabled by toggling the noscript.ajaxFallback.enabled preference
<br/>  (see <a rel="nofollow" href="https://code.google.com/web/ajaxcrawling/">https://code.google.com/web/ajaxcrawling/</a>, thanks alexbobp for RFE)
<br/>+ New noscript.placeholderLongTip about:config preference to control
<br/>  whether embedding placeholder tooltips should include query strings
<br/>  and hash fragments or not (true by default)

<h2>NoScript Security Suite 2.0.9.8.1-signed - Feb. 13, 2011</h2>
v 2.0.9.8
<br/>==========================================================================
<br/>x Fixed empty tooltip for embedded placeholder on some RTL pages (thanks
<br/>  Saad for reporting)
<br/>x Truncate URLs in placeholders tooltips at the the query string or hash,
<br/>  to increase readability (thanks anystupidassname for RFE)
<br/>x Increased WAN IP checks interval to 1 hour reducing log spam on routers
<br/>- Removed some obsolete code
<br/>&nbsp;
<br/>v 2.0.9.8rc2
<br/>==========================================================================
<br/>x Fixed all IPv6 addresses in fc80::/24 subnet being erronously treated
<br/>  like link-local addresses (thanks Jojo999 for reporting)
<br/>x Fixed "Unsafe Reload" not working for sanitized POST requests from
<br/>  untrusted to trusted sites (thanks Lucas Malor for reporting)
<br/>+ Better compatibility with Paypal button hosted on non-whitelisted sites
<br/>+ Added <a rel="nofollow" href="http://mozilla.net">mozilla.net</a> to the default whitelist for AMO compatibility
<br/>&nbsp;
<br/>v 2.0.9.8rc1
<br/>==========================================================================
<br/>x [UI] Fixed toolbar button being added on the right of the window resizer
<br/>  when Fx 4 is run for the first time with NoScript and the add-on bar is
<br/>  visible
<br/>+ [UI] Hitting the "show UI" shortcut (ctrl+shift+S) a second time
<br/>  dismisses NoScript's popup menu (thanks jso for RFE)
<br/>x [DNT] Restored header reordering after DNT header is added, in order to
<br/>  match Firefox 4's header fingerprint

<h2>NoScript Security Suite 2.0.9.7.1-signed - Jan. 30, 2011</h2>
v 2.0.9.7
<br/>==========================================================================
<br/>x Fixed status label menu popping up in a wrong position
<br/>x Updated locales
<br/>&nbsp;
<br/>v 2.0.9.7rc5
<br/>==========================================================================
<br/>x Fixed external filters submenu not removed when external filters are
<br/>  disabled
<br/>x Blocked objects menus show IFRAME/FRAME rather than mime type info for
<br/>  blocked frames (thanks al_9x for suggestion)
<br/>+ Restored legacy status label by popular request
<br/>+ Sticky menu can be triggered by left clicking on status label now
<br/>&nbsp;
<br/>v 2.0.9.7rc4
<br/>==========================================================================
<br/>x Work-around for menu icons hidden with some Linux distros and themes
<br/>  (thanks nickr for reporting)
<br/>x Changed the X-Do-Not-Track header name to DNT in anticipation of an IETF
<br/>  Internet-Draft, per Jonathan Mayer
<br/>x noscript.doNotTrack.forced gets honored for local addresses now (thanks
<br/>  Heptite for RFE)
<br/>x Fixed partial external filter definition could not be saved
<br/>x Fixed empty external filter whitelist could not be validated
<br/>&nbsp;
<br/>v 2.0.9.7rc3
<br/>==========================================================================
<br/>x Fixed exception on cross-site POST requests from URIs not supporting
<br/>  the host component (thanks JeffCO for reporting)
<br/>x Fixed JS redirection detection being activated also on whitelisted
<br/>  pages sometimes (thanks scratchpaper for reporting)
<br/>&nbsp;
<br/>v 2.0.9.7rc2
<br/>==========================================================================
<br/>+ 64x64 icon for Fx 4's add-ons manager
<br/>x Fixed bookmarklet execution machinery active even when JavaScript is
<br/>  disabled by Firefox's content options (thanks Martin Focke foir report)
<br/>x Tentative work-around for toolbar button being oriented vertically in
<br/>  some themes, disrupting toolbar's layout
<br/>x More updated locales
<br/>&nbsp;
<br/>v 2.0.9.7rc1
<br/>==========================================================================
<br/>x Fixed a ClearClick bypass possible to whitelisted attackers who can run
<br/>  JavaScript (thanks Atul Agarwal for reporting)
<br/>x Updated locales
<br/>x Improved K-Meleon portability (thanks jk- for RFE)

<h2>NoScript Security Suite 2.0.9.6.1-signed - Jan. 18, 2011</h2>
v 2.0.9.6
<br/>==========================================================================
<br/>x X-Do-Not-Track after a DNS cache miss causing some embedded content
<br/>  requests to fail
<br/>+ Contribution button on the bottom of the Options dialog
<br/>&nbsp;
<br/>v 2.0.9.5
<br/>==========================================================================
<br/>x Fixed NoScript toolbar buttons having wrong orientation in "icon and
<br/>  text" mode
<br/>&nbsp;
<br/>v 2.0.9.4
<br/>==========================================================================
<br/>x Fixed toolbar button does not open the menu (unless you click the little
<br/>  arrow) if you disable hovering and toggling (thanks bleh for report)
<br/>- Removed dynamic localization fallback at runtime
<br/>+ Added static localization fallback to the build system
<br/>x Localization layout cleanup
<br/>x Legacy files cleanup
<br/>&nbsp;
<br/>v 2.0.9.4rc2
<br/>==========================================================================
<br/>x Removed toolbarbutton-specific stylings
<br/>+ Better web compatibility for X-Content-Options
<br/>+ Better home router compatibility for X-Do-Not-Track
<br/>&nbsp;
<br/>v 2.0.9.4rc1
<br/>==========================================================================
<br/>x Fixed DoNotTrack exceptions/forced patterns not being enforced
<br/>x Tentative work-around for basic HTTP authentication failing with some
<br/>  servers when X-Do-Not-Track is sent

<h2>NoScript Security Suite 2.0.9.3.1-signed - Jan. 3, 2011</h2>
v 2.0.9.3
<br/>==========================================================================
<br/>x Fixed some cross-site requests containing JSON-like fragments broken

<h2>NoScript Security Suite 2.0.9.2.1-signed - Dec. 28, 2010</h2>
v 2.0.9.2
<br/>==========================================================================
<br/>x Fixed forbid META refresh inside NOSCRIPT elements regression
<br/>&nbsp;
<br/>v 2.0.9.1
<br/>==========================================================================
<br/>x Fixed partial options dialog breakage (ClearClick and Import/Export)
<br/>&nbsp;
<br/>v 2.0.9
<br/>==========================================================================
<br/>- Removed JAR blocking (obsolete in supported browser versions) 
<br/>- Removed emulated TLD service
<br/>x Hidden status bar icon option on applications which have no status bar
<br/>x Fixed noscript.doNotTrack.* preferences not being honored
<br/>&nbsp;
<br/>v 2.0.9rc5
<br/>==========================================================================
<br/>x Fixed wrong popup position on status bar icon (Fx 3.6.x and below only)
<br/>&nbsp;
<br/>v 2.0.9rc4
<br/>==========================================================================
<br/>+ X-Do-Not-Track and X-Behavioral-Ad-Opt-Out (tracking opt-out) support,
<br/>  controlled by the noscript.doNotTrack.* about:config preferences
<br/>x Restored "left+click on NoScript icon reopens the menu in legacy mode
<br/>  even if it's already opened in hover mode" feature
<br/>x Fixed bug preventing channel replacement when the HTTP method changes
<br/>+ Embedded permissions are now bound to the embedding site (thanks al_9x
<br/>  for RFE)
<br/>x Fixed permissions keys for Flash embeddings include FlashVars PARAMETER
<br/>  elements, rather than just attributes (thanks breakBug for report)
<br/>x Fixed embedding permission changes not honoring disabled autoreload
<br/>  preferences (thanks MMlosh for reporting)
<br/>&nbsp;
<br/>v 2.0.9rc3
<br/>==========================================================================
<br/>+ Middle clicking toolbar button temporarily allows all on current page
<br/>- Removed forced embedding opacization legacy feature
<br/>- Removed tooltips from icons spawning hover UI
<br/>- Disabled permission toggling on left+click for hover UI toolbar buttons
<br/>  (can be reenabled by setting noscript.hoverUI.excludeToggling to true)
<br/>x Fixed notification regression
<br/>&nbsp;
<br/>v 2.0.9rc2
<br/>==========================================================================
<br/>x No extra spacer added on addon-bar during first customization
<br/>x Long menus automatically scroll to the bottom when opened from the
<br/>  bottom of the browser
<br/>x Fixed legacy status bar icon switching permissions on left+click like
<br/>  the toolbar button
<br/>x Fixed legacy status bar icon always getting "after_start" popup position
<br/>&nbsp;
<br/>v 2.0.9rc1
<br/>==========================================================================
<br/>+ Improved anti-popunder surrogate
<br/>+ Check for UI accessibility of Firefox 4 with hidden addon-bar and
<br/>  automatic installation of toolbar button on fail
<br/>x Fixed whitelisted iframe blocking getting in the way of web content
<br/>  embedded by privileged tabs (e.g. Firefox 4's add-on manager)
<br/>x [ClearClick] slightly shorter viewport to accomodate Facebook's "Like"
<br/>  mini buttons
<br/>x Fixed tooltips getting in the way of hover UI
<br/>- Removed status bar label
<br/>x Fixed regression: permissions changes on sites with non-standard ports
<br/>  failed to trigger page reload (thanks Andrew Black for reporting)
<br/>x Fixed layout issue triggered by JS redirect detection (thanks Teknorat
<br/>  for reporting)

<h2>NoScript Security Suite 2.0.8.1 - Dec. 8, 2010</h2>
v 2.0.8.1
<br/>==========================================================================
<br/>x Fixed new IFRAME-based Youtube embedding method broken on non
<br/>  whitelisted pages with embedding restrictions (thanks al_9x for report)
<br/>&nbsp;
<br/>v 2.0.8
<br/>==========================================================================
<br/>x Fixed toolbar buttons icon size on Firefox 4 Windows theme
<br/>+ XSS check on permissions changes, suppressing events and forcing
<br/>  filtered reload if an injection is found (thanks "dave b" for reporting)
<br/>x Fixed graphic glitches on menu showing with accelerated graphics (thanks
<br/>  Das for reporting)
<br/>x Fixed permission changes causing unrelated tabs to be reloaded when
<br/>  automatic permissions had been previously granted
<br/>&nbsp;
<br/>v 2.0.8rc2
<br/>==========================================================================
<br/>x Fixed unhandled exception caused by LiveConnect interception logging (
<br/>  thanks al_9x for reporting)
<br/>x Optimized QueryInterface generation
<br/>+ [ABE] 6to4 IP addresses support
<br/>x Fixed LiveConnect interception firing a dummy JVM sometimes on Gecko 2.0
<br/>&nbsp;
<br/>v 2.0.8rc1
<br/>==========================================================================
<br/>x LiveConnect interception time reduced by 10 on Firefox 3.6 and by 100 on
<br/>  Firefox 4 (about 1ms each)
<br/>x Restored LiveConnect interception logging (LOG_CONTENT_INTERCEPT mask)
<br/>x Fixed bug in fake redirections code, causing it not to honor the
<br/>  redirection limit settings (thanks Peter Eckersley)
<br/>x [XSS] Improved SQLXSSI detection accuracy 
<br/>x Updated revsci surrogate (thanks al_9x)

<h2>NoScript Security Suite 2.0.7 - Nov. 25, 2010</h2>
v 2.0.7
<br/>==========================================================================
<br/>+ [XSS] Detection and filtering of hexadecimal and binary encoded
<br/>  reflected XSS through SQL injection (SQLXSSI), partially found and
<br/>  disclosed (raw hexadecimal variant only) by Aditya K Sood
<br/>&nbsp;
<br/>v 2.0.6
<br/>==========================================================================
<br/>+ Bug fixes and improvements in LiveConnect interception
<br/>x Fixed random "win is null" error message (thanks timeless for report)
<br/>&nbsp;
<br/>v 2.0.6rc4
<br/>==========================================================================
<br/>+ Java packages exposed by LiveConnect on the window object are made
<br/>  unaccessible wherever Java is blocked by embedding restrictions
<br/>&nbsp;
<br/>v 2.0.6rc3
<br/>==========================================================================
<br/>x [ABE] Work-around for Flash video playback and other HTTP subrequests
<br/>  from plugins sometimes failing on latest Minefield builds
<br/>  
<br/>v 2.0.6rc2
<br/>==========================================================================
<br/>x [ABE] Fixed 2.0.6rc1 regression: broken internal redirections
<br/>&nbsp;
<br/>v 2.0.6rc1
<br/>==========================================================================
<br/>+ "Security and privacy info" pages shown also by middle-clicking items
<br/>  in NoScript Options|Whitelist (thanks dhouwn for RFE)
<br/>x [XSS] Better compatibility with 4shared embedded movies
<br/>x [ABE] Fixed regression: Anon action interfering with IFrame blocking
<br/>  when DNS record for current request is cached (thanks al_9x for report)

<h2>NoScript Security Suite 2.0.5.1 - Nov. 11, 2010</h2>
v 2.0.5.1
<br/>==========================================================================
<br/>x Improved LoadGroup integration of the new internal redirection machinery
<br/>  for better loading progress feedback.
<br/>&nbsp;
<br/>v 2.0.5
<br/>==========================================================================
<br/>x Fixed stability issue when forcing HTTPS on images
<br/>&nbsp;
<br/>v 2.0.5rc3
<br/>==========================================================================
<br/>x Faster and more "correct" hack for internal redirections
<br/>&nbsp;
<br/>v 2.0.5rc2
<br/>==========================================================================
<br/>x Experimental asynchronous channel replacement for ABE and HTTPS
<br/>  enforcement, should prevent issues with image caching
<br/>x Work-around for Google/Youtube bug, sending "Content-Type: text/plain" 
<br/>  header for script files even with "X-Content-Type-Options: nosniff" (see
<br/>  <a rel="nofollow" href="http://forums.informaction.com/viewtopic.php?f=7&amp;t=5304)">http://forums.informaction.com/viewtopic.php?f=7&amp;t=5304)</a>
<br/>&nbsp;
<br/>v 2.0.5rc1
<br/>==========================================================================
<br/>x Fixed automatic allowing for XMLHttpRequest of sites with explicit port
<br/>  numbers whose domain is allowed (thanks evanpelt for reporting)

<h2>NoScript Security Suite 2.0.4 - Oct. 28, 2010</h2>
v 2.0.4rc2
<br/>==========================================================================
<br/>+ Better logging for the "X-Content-Type-Options: nosniff" activity
<br/>+ noscript.nosniff about:config preference to control whether enforcing
<br/>  "X-Content-Type-Options: nosniff" (true, default) or not (false)
<br/>&nbsp;
<br/>v 2.0.4rc1
<br/>==========================================================================
<br/>+ "X-Content-Type-Options: nosniff" support
<br/>x Fixed using bookmarklets with noscript.allowBookmarkletImports set to
<br/>  false erronously adds current website to the JavaScript whitelist

<h2>NoScript Security Suite 2.0.3.5 - Oct. 17, 2010</h2>
v 2.0.3.5
<br/>==========================================================================
<br/>x [UI] Fixed right-click on the toolbar button switching permissions
<br/>&nbsp;
<br/>v 2.0.3.4
<br/>==========================================================================
<br/>+ [UI] Bold "Recently blocked" menu and items which have been attempted to
<br/>  load from the currently displayed web site (thanks therube for RFE)
<br/>- Removed legacy (pre Fx 3) notification code
<br/>&nbsp;
<br/>v 2.0.3.4rc2
<br/>==========================================================================
<br/>- [UI] Removed status icon hover effect
<br/>+ [Surrogate] adriver.ru surrogate to prevent "pages never finish loading"
<br/>  problem (thanks al_9x)
<br/>+ [ClearClick] Unlocked flag caching performance optimizations
<br/>+ AddressMatcher now matches UTF8 (not IDN-encoded) host names too
<br/>+ AddressMatcher now matches scheme only (xyz:) patterns
<br/>x Work-around for X-Frame-Option interfering with mixed chrome/content
<br/>  UIs (e.g. Firefox 4 add-ons manager)
<br/>&nbsp;
<br/>v 2.0.3.4rc1
<br/>==========================================================================
<br/>x Fixed unchecking and re-checking the toggle permissions toolbar button
<br/>  behavior ending in an inconsistent status (thanks Grump Old Lady for
<br/>  reporting)
<br/>x [XSS] Improved Blogger CMS compatibility (thanks Logos for reporting)

<h2>NoScript Security Suite 2.0.3.3 - Oct. 1, 2010</h2>
v 2.0.3.3
<br/>==========================================================================
<br/>x Changed noscript.forbidIFramesContext about:config preference default to
<br/>  3 (same base domain) to ensure better usability on complex sites (e.g.
<br/>  new Twitter) for people who's blocking iframes on trusted sites
<br/>x Optimal sensitivity calibration for Hover UI trigger events
<br/>&nbsp;
<br/>v 2.0.3.3rc3
<br/>==========================================================================
<br/>+ Improved Hover UI usability with the noscript.hoverUI.delayStop
<br/>  about:config preference, dictating how many milliseconds the mouse must
<br/>  stand still on NoScript's icon before NoScript's menu is displayed
<br/>&nbsp;
<br/>v 2.0.3.3rc2
<br/>==========================================================================
<br/>+ [Surrogate] Surrogate scripts are no longer wrapped inside anonymous
<br/>  functions, in order to allow top-level variables to be forced read-only
<br/>  by using the const keyword; built-in surrogates have been retrofitted to
<br/>  prevent scope clashes, by adding anonymous function wrappers as needed
<br/>&nbsp;
<br/>v 2.0.3.3rc1
<br/>==========================================================================
<br/>+ [UI] Configurable enter and exit delays for the hover UI behavior, via
<br/>  noscript.hoverUI.delay* about:config preferences
<br/>x [ClearClick] improved compatibility with very short frames (like the top
<br/>  bar on www.blogger.com, thanks craftcove for reporting)
<br/>x [Policy] Removed legacy code specializing TYPE_OTHER

<h2>NoScript Security Suite 2.0.3.2 - Sept. 18, 2010</h2>
v 2.0.3.2
<br/>==========================================================================
<br/>x Work-around for first script element in body of a framed document not
<br/>  being executed unless password manager is enabled on Minefield
<br/>x Work-around for surrogates not being executed in frames on Minefield
<br/>&nbsp;
<br/>v 2.0.3.2rc1
<br/>==========================================================================
<br/>x Fixed further menu glitches with URL ports (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.0.3.1
<br/>==========================================================================
<br/>x [UI] added 250ms delay for menu disappearing on mouse out from icon (
<br/>  disappearing mouse out from menu already used a 500ms delay)
<br/>x Fixed explicit port URL related regression (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 2.0.3.1rc6
<br/>==========================================================================
<br/>x Fixed further breakages due to Array prototype chain glitches introduced
<br/>  in latest Minefield
<br/>&nbsp;
<br/>v 2.0.3.1rc5
<br/>==========================================================================
<br/>x Fixed redirections broken by Array prototype chain glitches introduced
<br/>  in latest Minefield
<br/>&nbsp;
<br/>v 2.0.3.1rc4
<br/>==========================================================================
<br/>x Work-arounds for some CAPS implementation impedance mismatches (thanks
<br/>  GµårÐïåñ and al_9x for reporting)
<br/>&nbsp;
<br/>v 2.0.3.1rc3
<br/>==========================================================================
<br/>+ [UI] Extended the "open on hover" behavior to the toolbar button
<br/>x about:crashes added to the mandatory whitelist
<br/>&nbsp;
<br/>v 2.0.3.1rc2
<br/>==========================================================================
<br/>x [Surrogate] Fixed window.open not working for HTTP sites on recent
<br/>  Minefield builds
<br/>x Fixed minor glitch in channel replacement on trunk
<br/>&nbsp;
<br/>v 2.0.3.1rc1
<br/>==========================================================================
<br/>x [Surrogate] Restored the previous document.cookie patching order, since
<br/>  it seems more compatible with some buggy sites

<h2>NoScript Security Suite 2.0.3 - Sept. 10, 2010</h2>
2.0.3
<br/>==========================================================================
<br/>x [Surrogate] Improved compatibility of the popunder surrogate
<br/>x [Surrogate] Fixed broken meebo.com detached windows
<br/>x [L10n] Updated it-IT
<br/>&nbsp;
<br/>v 2.0.3rc4
<br/>==========================================================================
<br/>+ [Pref] "NoScript Options|Appearance|Open permissions menu when mouse
<br/>  hovers over NoScript's icon" checkbox
<br/>x [UI] Minor refinements in the new "UI on hovering" behavior
<br/>&nbsp;
<br/>v 2.0.3rc3
<br/>==========================================================================
<br/>x [XSS] Fixed "Unsafe reload" not working under some circumstances (thanks
<br/>  the JoshMeister for reporting)
<br/>+ [XSS] Better compatibility with Blogspot's CMS (thanks the JoshMeister
<br/>  for reporting)
<br/>x Fixed "setting a property that has only a getter" warning in strict mode
<br/>x Better compatibility with CDNs improperly serving JavaScript files with
<br/>  a CSS mime type
<br/>  
<br/>v 2.0.3rc2
<br/>==========================================================================
<br/>x Fixed "Partially allowed" message instead of "Forbidden" when everything
<br/>  is blocked, including some embeddings (thanks jan for reporting)
<br/>x Fixed "No placeholder from untrusted" broken since 2.0.2.4 (thanks al_9x
<br/>  for reporting)
<br/>  
<br/>v 2.0.3rc1
<br/>==========================================================================
<br/>+ [UI] Clickless "on over" opening of the status bar menu, can be disabled
<br/>  via noscript.hoverUI about:config preference (thanks safemode for RFE)
<br/>x Fixed embedded fonts requiring the page to be allowed, rather than the
<br/>  just the object, if embedded in data: URIs (thanks Alexander Konovalenko
<br/>  for reporting)

<h2>NoScript Security Suite 2.0.2.5 - Sept. 2, 2010</h2>
v 2.0.2.5
<br/>==========================================================================
<br/>x [XSS] Further FBML compatibility improvements

<h2>NoScript Security Suite 2.0.2.3 - Aug. 19, 2010</h2>
v 2.0.2.3
<br/>==========================================================================
<br/>x [XSS] Fixed optimization bug which may lead to slower checks on specific
<br/>  source patterns
<br/>  

<h2>NoScript Security Suite 2.0.1 - Aug. 6, 2010</h2>
v 2.0.1
<br/>==========================================================================
<br/>+ [ABE] noscript.abe.localExtras about:config preference can specify net 
<br/>  resources (space separated IPs and/or subnets) to be considered as
<br/>  LOCAL by ABE, in addition to the "regular" private subnetworks and the
<br/>  auto-detected WAN IP (thanks ammdispose for suggestion)
<br/>x [ClearClick] Better compatibility with iframes containing very tiny
<br/>  pages (e.g. horizontal Flattr buttons)
<br/>x Fixed page-level surrogates not always being executed inside iframes
<br/>  (thanks al_9x for reporting)
<br/>x [XSS] Fixed XML tags with no attributes which are homonymous of
<br/>  "sensitive" HTML tags triggering XSS false positives
<br/>&nbsp;
<br/>v 2.0.1rc4
<br/>==========================================================================
<br/>+ Forced NOSCRIPT element activation is not triggered for sources marked
<br/>  as untrusted (thanks al_9x for suggestion)
<br/>+ Update for Firefox 4.0b4pre compatibility (bug 546606)
<br/>&nbsp;
<br/>v 2.0.1rc3
<br/>==========================================================================
<br/>x Improved interaction between surrogates and NOSCRIPT element activation
<br/>x Fixed potential recursion issue during DNS resolution on SeaMonkey trunk
<br/>  (thanks therube for reporting)
<br/>x Fixed <a rel="nofollow" href="https://bugzilla.mozilla.org/show_bug.cgi?id=584334">https://bugzilla.mozilla.org/show_bug.cgi?id=584334</a>
<br/>x Fixed using IPv6 URL syntax causes confusion to some proxies
<br/>x Compatibility checks updates
<br/>&nbsp;
<br/>v 2.0.1rc2
<br/>==========================================================================
<br/>+ [ABE] "X-ABE-Fingerprint: Off" header can be sent by web servers which
<br/>  don't want/need to be fingerprinted by ABE's WAN IP protection
<br/>+ [ABE] User agent header "Mozilla/5.0 (ABE, <a rel="nofollow" href="http://noscript.net/abe/wan)">http://noscript.net/abe/wan)</a>"
<br/>  is sent to help administrators finding info about ABE's fingerprinting
<br/>x [ABE] Fingerprint checks are performed every 15 minutes, rather than 5
<br/>x Fixed early access to document.documentElement breaking XBL bindings
<br/>  on SeaMonkey trunk (thanks therube for reporting)
<br/>&nbsp;
<br/>v 2.0.1rc1
<br/>==========================================================================
<br/>x Fixed meta redirections being broken sometimes when a NOSCRIPT element
<br/>  activation is forced on a JavaScript-enabled page (thanks Supermop for
<br/>  reporting)

<h2>NoScript Security Suite 2.0 - July 27, 2010</h2>
v 2.0
<br/>==========================================================================
<br/>x [Surrogate] Fixed Google thumbs surrogate broken by recent Gecko changes
<br/>x [ClearClick] Work-around for client(Height|Width) miscalculation 
<br/>&nbsp;
<br/>v 2.0rc8
<br/>==========================================================================
<br/>+ Full hand-over to InjectionChecker for untrusted origin requests as well
<br/>+ More efficient UI synchronization system
<br/>x Fixed status icon not being correctly updated when a new script source
<br/>  gets added after page is loaded
<br/>&nbsp;
<br/>v 2.0rc7
<br/>==========================================================================
<br/>+ More web-compatible NOSCRIPT element handling on mixed permissions pages
<br/>&nbsp;
<br/>v 2.0rc6
<br/>==========================================================================
<br/>+ [ABE] WAN IP checks logged on Error Console (thanks al_9x for RFE)
<br/>&nbsp;
<br/>v 2.0rc5
<br/>==========================================================================
<br/>+ [ABE] Experimental cross-zone CSRF protection for flawed routers which
<br/>  expose their WAN IP on their LAN interface (thanks al_9x for report)
<br/>&nbsp;
<br/>v 2.0rc4
<br/>==========================================================================
<br/>+ Anti-anti-adblocker generic page-level surrogate
<br/>+ Minimal surrogates for several ad/tracking sources
<br/>+ Revsci surrogate (thanks al_9x)
<br/>x Work-around for medicare.gov "benign" XSS
<br/>&nbsp;
<br/>v 2.0rc3
<br/>==========================================================================
<br/>x Fixed X-Frame-Options being checked for plugin embeddings as well
<br/>  (thanks Richard Johnson for reporting)
<br/>&nbsp;
<br/>v 2.0rc2
<br/>==========================================================================
<br/>+ External filters now receive the object URL as their 4th argument

<h2>NoScript Security Suite 1.10 - July 14, 2010</h2>
v 1.10
<br/>==========================================================================
<br/>+ ABE built-in ruleset editor
<br/>+ Button to reset ABE's defaults
<br/>x Fixed setting noscript.cp.last to false causing embeddings not to be
<br/>  blocked
<br/>x Fixed 2nd order InjectionChecker bypass (thanks Sirdarckcat for report)
<br/>+ External filters now receive the object referrer as their 3rd argument

<h2>NoScript Security Suite 1.9.9.99 - July 6, 2010</h2>
v 1.9.9.99
<br/>==========================================================================
<br/>x Emergency fix for a page reload bug on Mac OS X causing high CPU
<br/>  consumption after permission changes (thanks "D A" for reporting)

<h2>NoScript Security Suite 1.9.9.98 - July 5, 2010</h2>
v 1.9.9.98
<br/>==========================================================================
<br/>+ Improved ClearClick clipping accuracy on framesets
<br/>+ Improved ClearClick clipping accuracy on nested scrolling elements
<br/>&nbsp;
<br/>v 1.9.9.98rc6
<br/>==========================================================================
<br/>x Fixed work-around for Mozilla's bug 576492 breaking NoScript on browser
<br/>  restart
<br/>&nbsp;
<br/>v 1.9.9.98rc5
<br/>==========================================================================
<br/>+ Support for the latest Gecko 2 XPCOM changes
<br/>x Work-around for Mozilla's bug 576492
<br/>&nbsp;
<br/>v 1.9.9.98rc4
<br/>==========================================================================
<br/>+ noscript.surrogates.debug preference enables console logging of uncaught
<br/>  exceptions happening in surrogates (thanks al_9x for suggestion)
<br/>x Better error handling in surrogates, prevents a failing scripts to abort
<br/>  the others
<br/>x Improved AMO surrogates, allows right-click menu to work on install
<br/>  buttons (thanks Mc for reporting)
<br/>  
<br/>&nbsp;
<br/>v 1.9.9.98rc3
<br/>==========================================================================
<br/>x Fixed bug on edge case minimum placeholder size computation when object
<br/>  to be replaced is out of the current viewport
<br/>x Version compatibility bump for Firefox 4.0b2pre
<br/>x Fixed regression: untrusted icon not being shown when all the sources
<br/>  of a page are untrusted (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.98rc2
<br/>==========================================================================
<br/>+ window.toStaticHTML implementation
<br/>x Improved placeholders for embeds nested in ActiveX OBJECT elements
<br/>&nbsp;
<br/>v 1.9.9.98rc1
<br/>==========================================================================
<br/>+ Surrogate for Google Search thumbnails when Google is not whitelisted 
<br/>+ Automatic reload on permission change setting now affects pages
<br/>  containing embeddings which change status too, whose reload can be also
<br/>  forced through the noscript.autoReload.embedders preference:
<br/>  0 - never reload
<br/>  1 - inherit the noscript.autoReload setting
<br/>  2 - force reload
<br/>+ Prevent reload on pages where a 3rd party script changed its
<br/>  permissions status but the top-level is forbidden and unchanged
<br/>+ Surrogate to use InstallTrigger on AMO even if addons.mozilla.org is not
<br/>  whitelisted

<h2>NoScript Security Suite 1.9.9.97 - June 24, 2010</h2>
v 1.9.9.97
<br/>==========================================================================
<br/>x Fixed ClearClick false positives on Fx 3.5 and below (thanks Deniz Sofu
<br/>  for reporting)
<br/>x Compatibility version bump for Seamokey trunk
<br/>&nbsp;
<br/>v 1.9.9.97rc1
<br/>==========================================================================
<br/>x Fixed '@' surrogates being ran on scriptless pages
<br/>x Recentering on the parent form for ClearClick checks over a form widget
<br/>  reduces false positives over obstructed frames
<br/>&nbsp;
<br/>v 1.9.9.96
<br/>==========================================================================
<br/>x Fixed Script Surrogates activation glitches
<br/>&nbsp;
<br/>v 1.9.9.95
<br/>==========================================================================
<br/>x Fixed wrongly sized placeholders on Youtube (regression from rc1)
<br/>&nbsp;
<br/>v 1.9.9.95rc2
<br/>==========================================================================
<br/>x More accurated feedback on nested object blocking (thanks al_9x for
<br/>  reporting)
<br/>+ External filters command line template updated with request origin as
<br/>  the 3rd argument
<br/>&nbsp;
<br/>v 1.9.9.95rc1
<br/>==========================================================================
<br/>+ imagebam surrogate kills popups over images and popunders on click
<br/>+ imagehaven surrogate kills popups over images and popunders on click
<br/>+ inserstitialBox surrogate kills interstital on imagevenue.com
<br/>+ "!@" prefixed surrogates run no matter whether scripts are enabled or
<br/>  disabled for the page (in a DOMContentLoaded event handler)
<br/>x Fixed JS redirect handling causing duplicate object placeholders on
<br/>  scriptless pages containing embeddings only
<br/>x Fixed ABE's SELF checks fail on redirects which contain a browser URL
<br/>&nbsp;
<br/>v 1.9.9.94
<br/>==========================================================================
<br/>x Fixed bookmarklets support on non-whitelisted pages broken in non-Places
<br/>  browsers like SeaMonkey (thanks therube for reporting)
<br/>X Better icon feedback on page where there's no script element but some
<br/>  plugin content has been blocked
<br/>&nbsp;
<br/>v 1.9.9.93
<br/>==========================================================================
<br/>x Fixed ClearClick false positives when RTL content or browser settings
<br/>  put the vertical scrollbar on the left (thanks Mark Callow for report)
<br/>x Fixed setting noscript.checkInjectionType to false did not disable the
<br/>  feature (thanks al_9x for report)
<br/>x More accurate embedded object replacement (thanks al_9x for report)
<br/>&nbsp;
<br/>v 1.9.9.92
<br/>==========================================================================
<br/>x Fixed Places-related bug on Minefield (thanks mpz for reporting)
<br/>x noscript.forbidIFrameContext=3 (allow same base domain) falls back to 2
<br/>  (allow same domain) if either the parent or the frame is marked as
<br/>  untrusted (thanks al_9x for suggestion)
<br/>  
<br/>v 1.9.9.91
<br/>==========================================================================
<br/>x More compatible docShell reaching, works around some buggy extensions
<br/>  which wrap browser.webNavigation just partially
<br/>x InjectionChecker's XML reduction more compatible with SAML
<br/>&nbsp;
<br/>v 1.9.9.90
<br/>==========================================================================
<br/>+ Optimal timing for page-level surrogates in frames
<br/>x ClearClick exceptions are considered independently from the JavaScript
<br/>  whitelist as they should
<br/>x More consistent web bugs blocking with forced NOSCRIPT elements, take 2
<br/>  (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.89
<br/>==========================================================================
<br/>x More consistent web bugs blocking with forced NOSCRIPT elements, take 2
<br/>  (thanks al_9x for reporting)
<br/>x More consistent icon feedback with docShell-based cascading JS blocking
<br/>  (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.88
<br/>==========================================================================
<br/>x Inclusion type checks try to infer file type from directory-like URLs
<br/>x More consistent web bugs blocking with forced NOSCRIPT elements
<br/>x Fixed object placeholder regressions in Gecko &lt; 1.9 (thanks Rob for
<br/>  reporting)
<br/>x Version compatibility bump to Firefox 3.7a6pre

<h2>NoScript Security Suite 1.9.9.96 - June 23, 2010</h2>
v 1.9.9.96
<br/>==========================================================================
<br/>x Fixed Script Surrogates activation glitches
<br/>&nbsp;
<br/>v 1.9.9.95
<br/>==========================================================================
<br/>x Fixed wrongly sized placeholders on Youtube (regression from rc1)
<br/>&nbsp;
<br/>v 1.9.9.95rc2
<br/>==========================================================================
<br/>x More accurated feedback on nested object blocking (thanks al_9x for
<br/>  reporting)
<br/>+ External filters command line template updated with request origin as
<br/>  the 3rd argument
<br/>&nbsp;
<br/>v 1.9.9.95rc1
<br/>==========================================================================
<br/>+ imagebam surrogate kills popups over images and popunders on click
<br/>+ imagehaven surrogate kills popups over images and popunders on click
<br/>+ inserstitialBox surrogate kills interstital on imagevenue.com
<br/>+ "!@" prefixed surrogates run no matter whether scripts are enabled or
<br/>  disabled for the page (in a DOMContentLoaded event handler)
<br/>x Fixed JS redirect handling causing duplicate object placeholders on
<br/>  scriptless pages containing embeddings only
<br/>x Fixed ABE's SELF checks fail on redirects which contain a browser URL
<br/>&nbsp;
<br/>v 1.9.9.94
<br/>==========================================================================
<br/>x Fixed bookmarklets support on non-whitelisted pages broken in non-Places
<br/>  browsers like SeaMonkey (thanks therube for reporting)
<br/>X Better icon feedback on page where there's no script element but some
<br/>  plugin content has been blocked
<br/>&nbsp;
<br/>v 1.9.9.93
<br/>==========================================================================
<br/>x Fixed ClearClick false positives when RTL content or browser settings
<br/>  put the vertical scrollbar on the left (thanks Mark Callow for report)
<br/>x Fixed setting noscript.checkInjectionType to false did not disable the
<br/>  feature (thanks al_9x for report)
<br/>x More accurate embedded object replacement (thanks al_9x for report)
<br/>&nbsp;
<br/>v 1.9.9.92
<br/>==========================================================================
<br/>x Fixed Places-related bug on Minefield (thanks mpz for reporting)
<br/>x noscript.forbidIFrameContext=3 (allow same base domain) falls back to 2
<br/>  (allow same domain) if either the parent or the frame is marked as
<br/>  untrusted (thanks al_9x for suggestion)
<br/>  
<br/>v 1.9.9.91
<br/>==========================================================================
<br/>x More compatible docShell reaching, works around some buggy extensions
<br/>  which wrap browser.webNavigation just partially
<br/>x InjectionChecker's XML reduction more compatible with SAML
<br/>&nbsp;
<br/>v 1.9.9.90
<br/>==========================================================================
<br/>+ Optimal timing for page-level surrogates in frames
<br/>x ClearClick exceptions are considered independently from the JavaScript
<br/>  whitelist as they should
<br/>x More consistent web bugs blocking with forced NOSCRIPT elements, take 2
<br/>  (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.89
<br/>==========================================================================
<br/>x More consistent web bugs blocking with forced NOSCRIPT elements, take 2
<br/>  (thanks al_9x for reporting)
<br/>x More consistent icon feedback with docShell-based cascading JS blocking
<br/>  (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.88
<br/>==========================================================================
<br/>x Inclusion type checks try to infer file type from directory-like URLs
<br/>x More consistent web bugs blocking with forced NOSCRIPT elements
<br/>x Fixed object placeholder regressions in Gecko &lt; 1.9 (thanks Rob for
<br/>  reporting)
<br/>x Version compatibility bump to Firefox 3.7a6pre

<h2>NoScript Security Suite 1.9.9.87 - June 8, 2010</h2>
v 1.9.9.87
<br/>==========================================================================
<br/>x Improved URL parsing in META refresh interception
<br/>x Optimized * universal pattern in AddressMatcher
<br/>x Better error reporting during the execution of location bar scriptlets
<br/>&nbsp;
<br/>v 1.9.9.86
<br/>==========================================================================
<br/>+ Better timing for page-level script surrogates inside frames
<br/>+ mime/type@http://<a rel="nofollow" href="http://site.com">site.com</a> syntax support for noscript.allowedMimeRegExp
<br/>  preference (thanks Gregyski for request)
<br/>+ Improved XSS checks accuracy (less false positives) and performance
<br/>+ Enhanced management of recent Silverlight versions (thanks al_9x for
<br/>  reporting)
<br/>&nbsp;
<br/>v 1.9.9.85
<br/>==========================================================================
<br/>+ More accurate checks for META inside NOSCRIPT with HTML 5 parser
<br/>x Fixed possible DOS condition on some kinds of very long URLs
<br/>&nbsp;
<br/>v 1.9.9.84
<br/>==========================================================================
<br/>x Improved heuristic for background refresh automatic blocking and
<br/>  reenablement
<br/>x Fixed regressed "Follow" button on META refresh inside NOSCRIPT element
<br/>&nbsp;
<br/>v 1.9.9.83
<br/>==========================================================================
<br/>x Fixed some sites refreshing themselves even if another load has been
<br/>  initiated (thanks Dirk S for reporting)
<br/>&nbsp;
<br/>v 1.9.9.82
<br/>==========================================================================
<br/>+ More discreet and automated anti-tabnagging protection (refreshes are
<br/>  blocked on unfocused tabs and get automatically executed only when
<br/>  tab gets in focus again)
<br/>+ Slight optimization of AddressMatcher tests on .site.com clauses
<br/>x Fixed noscript.forbidBGRefresh.exceptions not being honored
<br/>x Better handling of error conditions happening during ABE's channel
<br/>  replacement internal redirections (thanks al_9x for reporting)
<br/>x Fixed minor feedback icon glitches (thanks al_9x for reporting)

<h2>NoScript Security Suite 1.9.9.81 - May 27, 2010</h2>
v 1.9.9.81
<br/>==========================================================================
<br/>+ Experimental blocking of page refreshes happening inside untrusted
<br/>  unfocused tabs, should provide protection against Aviv Raff's scriptless
<br/>  "tabnabbing" variant. Enabled by default, can be controlled through the
<br/>  noscript.forbidBGRefresh about:config integer preference:
<br/>  0 - no blocking
<br/>  1 - block refreshes on untrusted unfocused tabs
<br/>  2 - block refreshes on trusted unfocused tabs
<br/>  3 - block refreshes on both trusted and untrusted unfocused tab
<br/>  Address patterns matching pages which shouldn't be affected can be
<br/>  listed in the noscript.forbidBGRefresh.exceptions preference
<br/>x Fixed XSS false positive in new 3.7 add-ons manager
<br/>x Fixed meta-refresh URL parsing mismatch
<br/>x Fixed import script surrogates being broken by a 1.9.9.79 regression
<br/>&nbsp;
<br/>v 1.9.9.80
<br/>==========================================================================
<br/>x Fixed "Partially allowed scripts" icon shown instead of the "Scripts
<br/>  allowed but some objects blocked" one when the blocked objects' domains
<br/>  are not whitelisted for scripting (thanks al_9x for reporting)
<br/>x Fixed "Scripts allowed but some objects blocked" icon not being used for
<br/>  blocked web fonts (thanks Alan Baxter for reporting)
<br/>x (ABE) Deny on INCLUSION don't trigger a notification even if the blocked
<br/>  request is for a subdocument (the blocking is logged in the Console, use
<br/>  SUB if user-facing notification is needed)
<br/>x Fixed privileged XMLHttpRequests for untrusted resources being blocked
<br/>  if HTTP redirections occurred (thanks mari for reporting)
<br/>+ Better compatibility with IronPort web-based tools (thanks Ron Collins
<br/>  for reporting)
<br/>&nbsp;
<br/>v 1.9.9.79
<br/>==========================================================================
<br/>x Script surrogates whose source starts with the '!' get executed on
<br/>  pages where scripts are disabled (on document DOM completion, rather
<br/>  than before HTML parsing starts like regular surrogates)

<h2>NoScript Security Suite 1.9.9.80 - May 26, 2010</h2>
1.9.9.80
<br/>==========================================================================
<br/>x Fixed "Partially allowed scripts" icon shown instead of the "Scripts
<br/>  allowed but some objects blocked" one when the blocked objects' domains
<br/>  are not whitelisted for scripting (thanks al_9x for reporting)
<br/>x Fixed "Scripts allowed but some objects blocked" icon not being used for
<br/>  blocked web fonts (thanks Alan Baxter for reporting)
<br/>x (ABE) Deny on INCLUSION don't trigger a notification even if the blocked
<br/>  request is for a subdocument (the blocking is logged in the Console, use
<br/>  SUB if user-facing notification is needed)
<br/>x Fixed privileged XMLHttpRequests for untrusted resources being blocked
<br/>  if HTTP redirections occurred (thanks mari for reporting)
<br/>+ Better compatibility with IronPort web-based tools (thanks Ron Collins
<br/>  for reporting)
<br/>&nbsp;
<br/>v 1.9.9.79
<br/>==========================================================================
<br/>x Script surrogates whose source starts with the '!' get executed on
<br/>  pages where scripts are disabled (on document DOM completion, rather
<br/>  than before HTML parsing starts like regular surrogates)
<br/>&nbsp;
<br/>v 1.9.9.78
<br/>==========================================================================
<br/>x Redirect cache for scripts and XBL only
<br/>x Fixed cross-site CSS being blocked under some circumstances (e.g.
<br/>  on Flicker and Yahoo)

<h2>NoScript Security Suite 1.9.9.77 - May 17, 2010</h2>

<br/>v 1.9.9.77
<br/>==========================================================================
<br/>+ ABE INCLUSION(type1, type2, type3...) pseudo-method allows rules to take
<br/>  request type (e.g. SCRIPT vs CSS) in account
<br/>+ ABE SELF+ (same domain) and SELF++ (same base domain) pseudo-origins
<br/>x Fixed iconic feedback inconsistencies when untrusted blocked objects
<br/>  are mixed with full-trusted content (tanks al_9x for reporting)
<br/>x Fixed Injection Checker false positives on some kinds of complex nested
<br/>  URLs (thanks Sirdarckcat for reporting)
<br/>x Tweaked ClearClick for Disqus compatibility (thanks John for reporting)
<br/>&nbsp;
<br/>v 1.9.9.76
<br/>==========================================================================
<br/>x Fixed broken menu on Minefield when External Filters are enabled (thanks
<br/>  linuser for reporting)
<br/>x Fixed about: URL not being shown in NoScript menu (thanks al_9x for
<br/>  reporting)
<br/>x Removed minor strict warnings on Minefield
<br/>&nbsp;
<br/>v 1.9.9.75
<br/>==========================================================================
<br/>x Redirected site caching now skips plugin content
<br/>x Removed __parent__ usages for Minefield compatibility
<br/>x Removed some strict warnings (thanks timeless for reporting)

<h2>NoScript Security Suite 1.9.9.74 - May 1, 2010</h2>
v 1.9.9.74
<br/>==========================================================================
<br/>x Fixed false positive issue with empty cross-site POST requests (thanks
<br/>  Bahamut for reporting)
<br/>&nbsp;
<br/>v 1.9.9.73
<br/>==========================================================================
<br/>x Fixed potential double-firing command issue on Firefox Mobile
<br/>+ Added about:addons and about:home to the mandatory whitelist
<br/>+ Improved responsivity and usability on Firefox Mobile
<br/>&nbsp;
<br/>v 1.9.9.72
<br/>==========================================================================
<br/>x Fixed configuration import/export/synchronization bug introduced by
<br/>  "configuration presets" for Firefox Mobile
<br/>+ Finger-friendlier UI on Firefox Mobile

<h2>NoScript Security Suite 1.9.9.71 - April 29, 2010</h2>
v 1.9.9.71
<br/>==========================================================================
<br/>+ Added "Allowed with untrusted sources and blocked objects" icon
<br/>x Fixed minor inconsistencies in new partial allowance feedback icons
<br/>  (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.70
<br/>==========================================================================
<br/>+ Compatibility and better integration with latest Firefox Mobile (Fennec)
<br/>+ Experimental external filters for plugin content (e.g. Blitzableiter for
<br/>  Adobe Flash), see NoScript Options|Advanced|External Filters (Fx &gt;=3.5)
<br/>+ New specific partial status icon for pages where all scripts are allowed
<br/>  but some objects are blocked (thanks al_9x for RFE)
<br/>+ "about:blank" won't be shown as a secondary source in NoScript's UI. Old
<br/>  behavior can be restored by setting the noscript.showBlankSources
<br/>  preference to true (thanks al_9x for RFE)
<br/>+ googleapis.com in the default whitelist
<br/>x Fixed 2nd order indirect InjectionChecker bypass (thanks Sirdarckcat for
<br/>  reporting)
<br/>x Fixed a Mac OS X specific InjectionChecker decoding issue (thanks
<br/>  Colling Jackson for reporting)

<h2>NoScript Security Suite 1.9.9.69 - April 20, 2010</h2>
v 1.9.9.69
<br/>==========================================================================
<br/>x Further compatibility improvements in complex bookmarklets handling
<br/>&nbsp;
<br/>v 1.9.9.68
<br/>==========================================================================
<br/>x Better asynchronous bookmarklets handling, should not crash on
<br/>  Readability anymore
<br/>x Ultimate (maybe!) fix for trunk bug 556739 breakage
<br/>&nbsp;
<br/>v 1.9.9.67
<br/>==========================================================================
<br/>x Better fix for trunk bug 556739 breakage
<br/>&nbsp;
<br/>v 1.9.9.66
<br/>==========================================================================
<br/>x Further embed-only sites in menu fixes (thanks al_9x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.65
<br/>==========================================================================
<br/>x Fixed bookmarklet support broken on trunk by bug 556739 (thanks dhouwn
<br/>  for reporting)
<br/>x Fixed embed-only sites shown in main menu again (thanks al_9x for
<br/>  reporting)
<br/>&nbsp;
<br/>v 1.9.9.64
<br/>==========================================================================
<br/>x Better untrusted menu behavior on embedding only sources (thanks al_9x
<br/>  for reporting)
<br/>x Improved InjectionChecker compatibility with OpenID and other complex
<br/>  requests (thanks Jamie Cox for reporting)
<br/>x Fixed accurate Base64 injection checks breaking some encrypted Paypal
<br/>  buttons

<h2>NoScript Security Suite 1.9.9.63 - April 15, 2010</h2>
v 1.9.9.63
<br/>==========================================================================
<br/>x Removed ":0" wildcards from NoScript menu in ignorePorts=false mode to
<br/>  prevent confusing behaviors (thanks al_9x for suggestion)
<br/>+ Embedding-only sites are shown in the Untrusted menu if placeholders are
<br/>  set to be hidden for untrusted embeddings (thanks al_9x for suggestion)
<br/>&nbsp;
<br/>v 1.9.9.62
<br/>==========================================================================
<br/>x Improved XSS filter sensitivity for Base64-encoded payloads (thanks
<br/>  Stefano Di Paola for suggestion)
<br/>x Improved Facebook connect compatibility (thanks Peter Alexander for
<br/>  reporting)
<br/>x Removed __count__ usage in DNS cache management (SpiderMonkey compat)
<br/>x Fixed "Attempt to fix Javascript links" not working when the javascript:
<br/>  scheme is mixed-case (thanks al_9x for reporting)

<h2>NoScript Security Suite 1.9.9.61 - April 3, 2010</h2>
v 1.9.9.61
<br/>==========================================================================
<br/>x Fixed InjectionChecker infinite recursion bug on certain requests
<br/> (thanks dhouwn for reporting)
<br/>x Fixed plugin activation patches not being applied under some
<br/>  circumstances
<br/>&nbsp;
<br/>v 1.9.9.60
<br/>==========================================================================
<br/>+ Pluggable site info page (default <a rel="nofollow" href="http://noscript.net/info/%utf8%;%ace%)">http://noscript.net/info/%utf8%;%ace%)</a>
<br/>  can be opened by middle-click or shift+click on any site entry in
<br/>  NoScript's menus, and can be configured by editing the
<br/>  noscript.siteInfoProvider about:config preference
<br/>+ More user-friendly management of non-standard TCP ports
<br/>x Fixed release notes page might break session restore sometimes
<br/>x Locale files maintenance
<br/>+ Object sources won't appear in main menu when embedding restrictions
<br/>  apply to whitelist; previous behavior can be restored by setting the
<br/>  noscript.alwaysShowObjectSources to false (thanks al_9x for RFE)
<br/>&nbsp;
<br/>v 1.9.9.59
<br/>==========================================================================
<br/>x Better management of cached requests
<br/>x Fixed allowing objects from "Blocked objects" reloading only the first
<br/>  of each URL/mime pair group (thanks al_9x for reporting)
<br/>x Improved Facebook widgets compatibility (thanks Peter Alexander and
<br/>  Chuck Mullen for reporting)
<br/>x Fixed "Allow scripts globally" setting being ignored by the bulk
<br/>  configuration import feature (thanks Mike Perry for reporting)
<br/>x Fixed "Mark as untrusted" menu items being shown in "Allow scripts
<br/>  globally" mode even if both "Untusted" and "Mark as untrusted" are
<br/>  unchecked in the Appearace options tab (thanks Mike Perry for reporting)
<br/>x Improved bookmarklets support
<br/>x Minor bug fixes in jolly port matching
<br/>x Improved Anti-Popunder surrogate (thanks justaguest for reporting)
<br/>&nbsp;
<br/>v 1.9.9.58
<br/>==========================================================================
<br/>x Fixed HTMLObjectElement plugin content being blocked by X-Frame-Options
<br/>  checks (thanks Titioz for reporting)
<br/>x Fixed <a rel="nofollow" href="https://bugzilla.mozilla.org/show_bug.cgi?id=553901">https://bugzilla.mozilla.org/show_bug.cgi?id=553901</a>

<h2>NoScript Security Suite 1.9.9.57 - March 18, 2010</h2>
v 1.9.9.57
<br/>==========================================================================
<br/>x Fixed feed subscription broken on sites implementing X-Frame-Policy
<br/>  (regression from 1.9.9.56, thanks al_9x for reporting)
<br/>x Included js.wlxrs.com in default whitelist in order to make Hotmail
<br/>  login work out-of-the-box for new users

<h2>NoScript Security Suite 1.9.9.50 - Feb. 26, 2010</h2>
v 1.9.9.50
<br/>==========================================================================
<br/>+ Updated ABE grammar to use new AddressMatcher syntactic sugar
<br/>+ Alert about ABE syntax errors when option dialog gets focused after a
<br/>  ruleset editing (thanks al_9x for suggestion)
<br/>  
<br/>v 1.9.9.49
<br/>==========================================================================
<br/>+ .x.y AddressMatcher syntactic sugar, matching both x.y and *.x.y (thanks
<br/>  al_9x for suggestion)
<br/>+ InjectionChecker speed and accuracy improvements
<br/>x Fixed top-level site not being correctly positioned and highlighted in
<br/>  permissions menu sometimes (thanks nagan for report)
<br/>x Fixed post-XSS "Unsafe reload" not working properly sometimes
<br/>&nbsp;
<br/>v 1.9.9.48
<br/>==========================================================================
<br/>x Fixed a second level InjectionChecker bypass, requiring an open redirect
<br/>  which accepts and uses unfiltered data: URIs. Responsible disclosure by
<br/>  the SecuriTeam Secure Disclosure (SSD) project
<br/>x Fixed reload on permission change being triggered on the nearest 10 tabs
<br/>  only
<br/>x Fixed permanent address entry being added to the whitelist if domain is
<br/>  already allowed upon bookmarklet execution (thanks Bobabo for report)
<br/>x Better UI behavior for URLs with non-standard ports (thanks al_9x for
<br/>  report)
<br/>x Updated nb-NO localization

<h2>NoScript Security Suite 1.9.9.47 - Feb. 12, 2010</h2>
v 1.9.9.47
<br/>==========================================================================
<br/>x Fixed XSS checks skipped on some reloads (thanks Alejandro Rusell for
<br/>  report)
<br/>x Improved content placeholder management
<br/>x Mobile version bump
<br/>&nbsp;
<br/>v 1.9.9.46
<br/>==========================================================================
<br/>x Fixed uneeded tab reload issue related to untrusted subdomains (thanks
<br/>  al_9x for reporting)
<br/>x Optimized reload checks for the "hundreds of tabs" case, in order to
<br/>  prevent UI locking
<br/>x Improved XSS checks on file uploads, should not hang even on gigabytes
<br/>x Trunk compatibility version bump

<h2>NoScript Security Suite 1.9.9.45 - Feb. 4, 2010</h2>
v 1.9.9.45
<br/>==========================================================================
<br/>x Enhanced compatibility with Paypal encrypted buttons
<br/>x Fixed some anti-popunder surrogate incompatibilities
<br/>&nbsp;
<br/>v 1.9.9.44
<br/>==========================================================================
<br/>x Fixed allowing a Flash object causing a page reload sometimes (thanks
<br/>  al9_x for reporting)
<br/>x Script Surrogate to work around Facebook's "noscript" cookie
<br/>x Fixed minor incompatibilities caused by the anti-popunder surrogate
<br/>&nbsp;
<br/>v 1.9.9.43
<br/>==========================================================================
<br/>x Fixed broken popup issue on some sites (thanks John for reporting)
<br/>x Fixed ghost sites in context menus on about:blank after a complex
<br/>  frame structure with redirects has been shown in the same tab (thanks
<br/>  simpleton for reporting)
<br/>x Fixed XSS false positive on certain nested URL patterns (thanks
<br/>  NoRelationToNed for reporting)

<h2>NoScript Security Suite 1.9.9.42 - Jan. 27, 2010</h2>
v 1.9.9.42
<br/>==========================================================================
<br/>+ ClearClick: more efficient code paths specific to Fx 3.6 and above 
<br/>x Fixed zoom-related ClearClick false positives on Fx 3.6 and above
<br/>x Fixed fonts being reported as "unknown" type in Blocked Objects menu
<br/>&nbsp;
<br/>v 1.9.9.41
<br/>==========================================================================
<br/>+ Fix for newline-based double-reflection InjectionChecker bypass (thanks
<br/>  Sirdarckcat for reporting)
<br/>x Surrogate scripts from local files: surrogate's replacement is treated
<br/>  as a file:// URL and resolved against current browser profile if it 
<br/>  starts with "file://", "./" or "../" (thanks Richard Stallman, Johan
<br/>  Euphrosine and Sam Imtiaz)
<br/>&nbsp;
<br/>v 1.9.9.40
<br/>==========================================================================
<br/>x Improved bookmarklet compatibility

<h2>NoScript Security Suite 1.9.9.39 - Jan. 20, 2010</h2>
v 1.9.9.39
<br/>==========================================================================
<br/>x Fixed quirks mode triggered by surrogate execution on Gecko &lt; 1.9.1
<br/>  (thanks Power for suggestions)
<br/>&nbsp;
<br/>v 1.9.9.38
<br/>==========================================================================
<br/>x Fix for some popups broken by 1.9.9.37
<br/>&nbsp;
<br/>v 1.9.9.37
<br/>==========================================================================
<br/>x Fixed potential infinite loop occurring when window.open is called in a
<br/>  recursive context, e.g. on Google Reader (thanks Qbert for reporting)
<br/>x Fixed mishandling of non-default 1 value for the proxiedDNS preference

<h2>NoScript Security Suite 1.9.9.36 - Jan. 16, 2010</h2>
v 1.9.9.36
<br/>==========================================================================
<br/>+ Anti-Popunder surrogate now applies to all HTTP pages by default
<br/>+ DNS activity logging facility (disabled by default)
<br/>x Slight optimization of DNS lookups
<br/>x Temptative fix for <a rel="nofollow" href="https://bugzilla.mozilla.org/show_bug.cgi?id=501446">https://bugzilla.mozilla.org/show_bug.cgi?id=501446</a>
<br/>  crasher (thanks timeless)

<h2>NoScript Security Suite 1.9.9.35 - Jan. 6, 2010</h2>
v 1.9.9.35
<br/>==========================================================================
<br/>x Updated Firefox Mobile (Fennec) compatibility
<br/>x Improved and generalized Anti-Popunder surrogate
<br/>&nbsp;
<br/>v 1.9.9.34
<br/>==========================================================================
<br/>+ Anti-Popunder surrogate extended to AWEmpire popunders (on empornium.us
<br/>  by default, customizable in noscript.surrogates.popunder.sources)
<br/>x Fixed bug in bookmarklet support on about:blank (thanks Milind for
<br/>  reporting)
<br/>x Improved InjectionChecker compatibility with letitbit.net uploads
<br/>x Improved InjectionChecker compatibility with Rapidshare uploads
<br/>&nbsp;
<br/>v 1.9.9.33
<br/>==========================================================================
<br/>x Better HTTPS/HTTP redirection support (thanks ttt for reporting)
<br/>&nbsp;
<br/>v 1.9.9.32
<br/>==========================================================================
<br/>+ Further InjectionChecker optimizations, providing a dramatic speed boost
<br/>  on nested URLs (e.g. on iGoogle and many ad networks)
<br/>&nbsp;
<br/>v 1.9.9.31
<br/>==========================================================================
<br/>+ InjectionChecker accuracy optimization, preventing false positives in
<br/>  some edge cases with nested URLs (thanks Aditya K Sood for reporting)

<h2>NoScript Security Suite 1.9.9.30 - Dec. 30, 2009</h2>
v 1.9.9.30
<br/>==========================================================================
<br/>+ Injection Checker compatibility with Livejournal comment posting
<br/>+ Improved ClearClick compatibility with Facebook applications
<br/>&nbsp;
<br/>v 1.9.9.29
<br/>==========================================================================
<br/>x Temptative work-around for hard to reproduce content policy DOS false
<br/>  positive on comcast.net (thanks Jim Too and Alan Baxter for reporting)
<br/>&nbsp;
<br/>v 1.9.9.28
<br/>==========================================================================
<br/>x Work-around for a Flash player double-instantiation bug in Gecko 1.9.0
<br/>  preventing some movies from playing (thanks secdroid for reporting)
<br/>- Removed placeholder enhancements for Gecko 1.8.x, due to unwanted side
<br/>  effects on some sites

<h2>NoScript Security Suite 1.9.9.27 - Dec. 18, 2009</h2>
v 1.9.9.27
<br/>==========================================================================
<br/>x Placeholder enhancements backported to Gecko 1.8.x
<br/>x Fixed missing placeholders on Gecko 1.8.x (thanks al9_x for reporting)
<br/>&nbsp;
<br/>v 1.9.9.26
<br/>==========================================================================
<br/>x Reduced reflow chances on placeholder activation
<br/>x Improved InjectionChecker compatibility with Facebook Connect
<br/>&nbsp;
<br/>v 1.9.9.25
<br/>==========================================================================
<br/>x Fixed Flash swallowed clicks regression on Gecko 1.8.x (thanks al9_x for
<br/>  reporting)
<br/>&nbsp;
<br/>v 1.9.9.24
<br/>==========================================================================
<br/>x Fixed "Temporarily allow" regression
<br/>&nbsp;
<br/>v 1.9.9.23
<br/>==========================================================================
<br/>+ Specific scriptless partial permissions icon for partially allowed
<br/>  framesets (thanks al9_x for reporting)
<br/>x Reduced disk activity on permission change (thanks al9_x for RFE)
<br/>x Work-around for a Java initialization failure

<h2>NoScript Security Suite 1.9.9.22 - Dec. 14, 2009</h2>
[no description]

<h2>NoScript Security Suite 1.9.9.18 - Nov. 27, 2009</h2>
v 1.9.9.18
<br/>==========================================================================
<br/>x Removed residual compound attribute-based injection chance (thanks
<br/>  Sirdarckcat for reporting)
<br/>&nbsp;
<br/>v 1.9.9.17
<br/>==========================================================================
<br/>x Fixed residual crash issue when favicons need to be redirected to HTTPS
<br/>x Enhanced ClearClick compatibility with Photbucket
<br/>&nbsp;
<br/>v 1.9.9.16
<br/>==========================================================================
<br/>+ Better object unblocking behavior, triggering a page reload if allowed
<br/>  object has no layout (i.e. was meant to be scripted only), increasing
<br/>  usability of trusted restrictions e.g. in VMWare Server's console
<br/>x Work-around for a Firefox image caching crashing bug triggered by HTTPS
<br/>  enforcement on mixed content
<br/>x Improved compatibility with Ebay (thanks STB2008 for reporting)

<h2>NoScript Security Suite 1.9.9.15 - Nov. 16, 2009</h2>
v 1.9.9.15
<br/>===================================================================
<br/>x Fixed HTTPS enforcement for embedded images breaking HTTP authentication
<br/>  (thanks polie for report)
<br/>x Fixed XHR breakage when called from a Worker (thanks Apeiron for report)
<br/>x Skip link fixing on right click
<br/>x Improved bookmarklet execution mechanism
<br/>x Improved compatibility of InjectionChecker with Facebook Connect
<br/>x Improved compatibility of InjectionChecker with Lycos Mail

<h2>NoScript Security Suite 1.9.9.14 - Oct. 27, 2009</h2>
v 1.9.9.14
<br/>==========================================================================
<br/>x Fixed page loading issues (hard to reproduce but reported by many)
<br/>&nbsp;
<br/>v 1.9.9.13
<br/>==========================================================================
<br/>x Fixed page loading regression from "Hijack checks skip error pages"
<br/>  optimization in 1.9.9.12 (hard to reproduce but reported by many)
<br/>x Fixed attribution of Romanian translation

<h2>NoScript Security Suite 1.9.9.12 - Oct. 26, 2009</h2>
v 1.9.9.12
<br/>==========================================================================
<br/>+ Allowing a plugin object which size is not set reloads the page,
<br/>  assuming that scripts are used to size it
<br/>+ Google Translate XSS exception
<br/>+ abine:* ClearClick subexception
<br/>+ Updated localizations
<br/>x Removed current URL leaking into RegExp properties if invisible link
<br/>  detection is enabled
<br/>x Hijack checks must skip error pages (thanks luntrus for report)
<br/>x Fixed XSS false positive at travelocity.com (thanks Chris Lonsberry)

<h2>NoScript Security Suite 1.9.9.11 - Oct. 13, 2009</h2>
v 1.9.9.11
<br/>==========================================================================
<br/>+ Reorganization of the "Embeddings" (FKA "Plugins") options panel
<br/>+ "Forbid &lt;VIDEO&gt;, &lt;AUDIO&gt;" option in the "Embeddings" panel
<br/>+ "Forbid @font-face" option in the "Embeddings" panel
<br/>+ ClearClick report id made selectable (thanks therube for RFE)
<br/>&nbsp;
<br/>v 1.9.9.10
<br/>==========================================================================
<br/>+ Webfonts blocking from untrusted sources and on untrusted pages,
<br/>  controlled by the noscript.forbidFonts about:config preference (UI
<br/>  planned for later, thanks Mike Perry for RFE)
<br/>+ noscript.forbidMedia about:config preference controlling HTML 5 media
<br/>  blocking independently from the "Forbid other plugins" setting (UI
<br/>  planned for later)
<br/>+ Improved live object allowing/forbidding
<br/>x Fixed potential false positives generated by Spidermonkey's decompiler
<br/>  artifacts
<br/>&nbsp;
<br/>v 1.9.9.09
<br/>==========================================================================
<br/>x Fixed noscript.forbidData not being honored (thanks Chris for report)
<br/>x Fixed Trillian to Yahoo Mail! XSS false positive (thanks maryadavies and
<br/>  Thomas for reports)
<br/>&nbsp;
<br/>v 1.9.9.08
<br/>==========================================================================
<br/>x Fixed potential cache issues due by header cloning on internal redirects
<br/>  (thanks GregThomas for report)

<h2>NoScript Security Suite 1.9.9.07 - Oct. 5, 2009</h2>
v 1.9.9.07
<br/>==========================================================================
<br/>+ Improved Google Analytics surrogate, handling form submissions (thanks
<br/>  Alan Baxter for report)
<br/>&nbsp;
<br/>v 1.9.9.06
<br/>==========================================================================
<br/>+ Added <a rel="nofollow" href="https://mail.google.com/*">https://mail.google.com/*</a> to X-Frame-Options parent whitelist, in
<br/>  order to allow GMail/Calendar mashups via extensions and GreaseMonkey
<br/>x Fixed noscript.forbidIFrameContext set to 0 blocking top-level web pages
<br/>  loading (thanks al_9x for report)
<br/>x Fixed Yahoo! Mail login persistence issue (thanks Ronnie for report)
<br/>&nbsp;
<br/>v 1.9.9.05
<br/>==========================================================================
<br/>+ Improved emulation of complex bookmarklet import sequences
<br/>x Fixed potential issue in new InjectionChecker C++ style comments code
<br/>&nbsp;
<br/>v 1.9.9.04
<br/>==========================================================================
<br/>x Fixed header cloning bug in internal redirections
<br/>x Better management of C++ style comments in InjectionChecker
<br/>x Fixed legacy frames retargeting bug (thanks Andrew Fisher for reporting)
<br/>&nbsp;
<br/>v 1.9.9.03
<br/>==========================================================================
<br/>+ noscript.frameOptions.enabled about:config preference to control if the
<br/>  X-Frame-Options header must be honored
<br/>x noscript.frameOptions.parentWhitelist preference to exclude some parent
<br/>  window from X-Frame-Options checks on their embedded frames
<br/>x Enhanced internal redirection mechanism
<br/>x Fixed Weave 0.7pre log window incompatibility
<br/>&nbsp;
<br/>v 1.9.9.02
<br/>==========================================================================
<br/>x Improved InjectionChecker's heuristic (thanks Sirdarckcat for reporting)

<h2>NoScript Security Suite 1.9.9.01 - Sept. 24, 2009</h2>
v 1.9.9.01
<br/>==========================================================================
<br/>x Fixed InjectionChecker micro-injecion scanning bug (thanks Sirdarckcat
<br/>  for reporting)
<br/>&nbsp;
<br/>v 1.9.9 (FKA 1.9.8.9)
<br/>==========================================================================
<br/>+ First public Strict Transport Security implementation, see
<br/>  <a rel="nofollow" href="http://hackademix.net/2009/09/23/strict-transport-security-in-noscript/">http://hackademix.net/2009/09/23/strict-transport-security-in-noscript/</a>
<br/>x Fixed Javascript disabled in about:neterror pages if the broken
<br/>  destination page is marked as untrusted (thanks al_9x for report)
<br/>x Improved HTTPS enforcement, honoring original referer
<br/>x Fixed a potential "unresponsive script" InjectionChecker condition
<br/>  (thanks Sirdarckcat for reporting)
<br/>x Fixed help links not opening from NoScript's UI on Minefield
<br/>x Fixed ABE LOCAL symbol matching 172.16.0.0/16 rather than the
<br/>  whole 172.16.0.0/12 (thanks Antal for reporting)
<br/>&nbsp;
<br/>v 1.9.8.89
<br/>==========================================================================
<br/>x InjectionChecker optimization on long Base64 sequences (thanks skl
<br/>  for report)
<br/>&nbsp;
<br/>v 1.9.8.88
<br/>==========================================================================
<br/>x X-Frame-Options applied only to ultimate load, after redirection
<br/>  (compatibility with IE8's and Chrome's implementation)
<br/>x Fixed Flash activation bug on Gecko

<h2>NoScript Security Suite 1.9.8.86 - Sept. 14, 2009</h2>
v 1.9.8.86
<br/>====================================================================
<br/>x Fixed kongregate.com incompatibility (thanks jthill for report)
<br/>&nbsp;
<br/>v 1.9.8.85
<br/>====================================================================
<br/>+ Updated MK locale
<br/>x QA for release
<br/>&nbsp;
<br/>v 1.9.8.84
<br/>====================================================================
<br/>x Flash object emulation to fool SWFObject 2.2 version detection
<br/>  without instantiating a real Flash object (thanks al9_x for test)
<br/>&nbsp;
<br/>v 1.9.8.83
<br/>====================================================================
<br/>x Fixed bug in the new Flash early instantiation management (thanks
<br/>  al9_x for reporting)
<br/>&nbsp;
<br/>v 1.9.8.82
<br/>====================================================================
<br/>x Upper limit to bookmarklet setTimeout() emulation, in order to
<br/>  prevent infinite pseudo-loops
<br/>x Improved InjectionChecker algorithms (thanks Sirdarckcat for
<br/>  suggestions)
<br/>x Early URL-less Flash objects are instantiated only if Flash
<br/>  permissions have been already granted to the origin site
<br/>&nbsp;
<br/>v 1.9.8.81
<br/>====================================================================
<br/>x Fixed issue with early manipulation of Flash objects whose source
<br/>  URL has not been set yet (thanks al9_x for reporting and Grump
<br/>  Old Lady for proxy/VPN testing infrastructure)

<h2>NoScript Security Suite 1.9.8.8 - Sept. 2, 2009</h2>
v 1.9.8.8
<br/>====================================================================
<br/>x Improved bookmarklet setTimeout() emulation (delay ordering is
<br/>  honored and pseudo-recursion is supported)
<br/>x Update locales
<br/>&nbsp;
<br/>v 1.9.8.72
<br/>====================================================================
<br/>x Moved the NoScript status label to the left of the status icon,
<br/>  in order to avoid "jumps" when using the sticky menu (thanks nagan
<br/>  and frsch for suggestions)
<br/>x Improved management of HTTPS forcing during HTTP redirections
<br/>x Fixed incompatibility with Minefield/3.7a1pre build 20090827
<br/>  (thanks Itsnow for reporting)
<br/>&nbsp;
<br/>v 1.9.8.71
<br/>====================================================================
<br/>+ "Recently blocked sites" now shows the object icon for trusted
<br/>  sites which are listed because some content has ben blocked
<br/>x Fixed sites shown in "Recently blocked sites" if content-blocking
<br/>  restrictions are applied even when no content has been blocked yet
<br/>  (thanks Alan Baxter for reporting)

<h2>NoScript Security Suite 1.9.8.7 - Aug. 25, 2009</h2>
v 1.9.8.7
<br/>====================================================================
<br/>x Fixed minor bugs in "Recent blocked sites" implementation
<br/>x Updated Rumenian
<br/>x Fixed encoding issue with configuration import/export/sync (thanks
<br/>  m_c for reporting)
<br/>&nbsp;
<br/>v 1.9.8.61
<br/>=====================================================================
<br/>+ Optimization of multiple regexp preferences
<br/>x Fixed XSS filter exceptions not being honored if URL contains
<br/>  percent-encoded character which are invalid UTF-8 code points
<br/>  (thanks Bueller007 for reporting)
<br/>x Fixed UTF8 overdecoding checks interfering with some Japanese sites
<br/>  (thanks Bueller007 for reporting)
<br/>&nbsp;
<br/>v 1.9.8.6
<br/>=====================================================================
<br/>+ Reset command in "Recently blocked sites" menu (thanks Fred for
<br/>  suggestion)
<br/>+ For privacy reasons "Recently blocked sites" are erased everytime
<br/>  user purges history
<br/>+ Temporary permissions are revoked and "Recently blocked sites" are
<br/>  erased everytime user exits the "Private Browsing" mode
<br/>x Fixed DNS-sensitive frame blocking bug
<br/>&nbsp;
<br/>v 1.9.8.5
<br/>=====================================================================
<br/>+ New "Recently blocked sites" menu to allow active content origins
<br/>  which have been recently blocked but are unrelated with current
<br/>  page (e.g. loaded in custom frames provided by extensions)
<br/>x Fixed some glitch in temporary permissions handling (thanks
<br/>  computerfreaker for reporting)
<br/>x Simplified bookmarklet permissions granting
<br/>x Simplified ABERequest lifecycle management
<br/>x Prevented potential memory leak

<h2>NoScript Security Suite 1.9.8.4 - Aug. 18, 2009</h2>
v 1.9.8.4
<br/>=====================================================================
<br/>x Fixed ABE internal redirection on DNS cache miss interfering with
<br/>  injection checks under some circumstances
<br/>&nbsp;
<br/>v 1.9.8.3
<br/>=====================================================================
<br/>+ Full HTML 5 event attributes InjectionChecker support
<br/>x Fixed DNS resolution notification causing event loop spinning and
<br/>  perceived slowness of "Open all in tabs" command
<br/>x Removed InjectionChecker bypass (thanks Sirdarckcat for reporting)
<br/>+ Updated locales
<br/>&nbsp;
<br/>v 1.9.8.2
<br/>=====================================================================
<br/>x Improved protection against DOS attacks (thanks Gereth Heyes for
<br/>  testbed)

<h2>NoScript Security Suite 1.9.8.1 - Aug. 11, 2009</h2>
v 1.9.8.1
<br/>=====================================================================
<br/>x Fixed Mac OS X specific hang bug triggered by STATUS_RESOLVING DNS
<br/>  notifications for some sub-requests
<br/>&nbsp;
<br/>v 1.9.8
<br/>=====================================================================
<br/>+ ABE's caching DNS requests now send STATUS_RESOLVING notifications
<br/>  (thanks al9_x for RFE)
<br/>x Improved injection checks (thanks Sirdarckcat for reporting)
<br/>x Fixed invalid chars in host names causing loads to fail without any
<br/>  visible error feedback
<br/>x Work around for breakages caused by the .NET Framework Assistant,
<br/>  <a rel="nofollow" href="http://adblockplus.org/blog/the-return-of-net-framework-assistant">http://adblockplus.org/blog/the-return-of-net-framework-assistant</a>
<br/>+ ABE grammar source (ABE.g) included in the distributed XPI (thanks
<br/>  al9_x for noticing its absence)

<h2>NoScript Security Suite 1.9.7.9 - Aug. 4, 2009</h2>
v 1.9.7.9
<br/>=====================================================================
<br/>x Improved XSS filter compatibility with some decimal coordinates
<br/>  patterns
<br/>x Fixed JavaScript IFrame manipulation causes documents to be loaded
<br/>  in a new window sometimes (thanks Derek Greentree for reporting)
<br/>&nbsp;
<br/>v 1.9.7.86
<br/>=====================================================================
<br/>x Improved XSS filter compatibility with MySpace modules (thanks
<br/>  Dixie for reporting)
<br/>&nbsp;
<br/>v 1.9.7.85
<br/>=====================================================================
<br/>x Improved permission change speed for very long lists / very slow
<br/>  CPUs (thanks Boyd Noorda for reporting)
<br/>&nbsp;
<br/>v 1.9.7.84
<br/>=====================================================================
<br/>x Fixed HTTPS-forced subrequests being cancelled sometimes
<br/>&nbsp;
<br/>v 1.9.7.83
<br/>=====================================================================
<br/>x Fixed plugin content could not be navigated through legacy frames
<br/>&nbsp;
<br/>v 1.9.7.82
<br/>=====================================================================
<br/>x Fixed URL classifier not being called for hosts whose DNS record is
<br/>  not cached yet by ABE (thanks "Fellow Noscripter" for reporting)
<br/>&nbsp;
<br/>v 1.9.7.81
<br/>=====================================================================
<br/>x Fixed domain name resolution delayed for cached failed responses
<br/>  after a network reconnection (thanks foxicat for reporting)
<br/>&nbsp;
<br/>v 1.9.7.8
<br/>=====================================================================
<br/>x Fixed invisible links detection turning some links into absolutely
<br/>  positioned if they have no layout on load (thanks dpmccabe for
<br/>  reporting)
<br/>x Improved specificity of data: URL injection detection (thanks Tom
<br/>  for reporting)

<h2>NoScript Security Suite 1.9.7.7 - July 30, 2009</h2>
v 1.9.7.7
<br/>=====================================================================
<br/>x Fixed DNS cache status interfering with HTTPS redirections
<br/>&nbsp;
<br/>v 1.9.7.6
<br/>=====================================================================
<br/>+ Fixed HTTPS-bound active content restrictions preferences not being
<br/>  honored sometimes (thanks Peter Meier for reporting)
<br/>&nbsp;
<br/>v 1.9.7.5
<br/>=====================================================================
<br/>+ HTML 5 video and audio are blocked also when loaded as documents
<br/>  in a frame or in a top-level window
<br/>&nbsp;
<br/>v 1.9.7.4
<br/>=====================================================================
<br/>x Decoupled legacy frame blocking from "Forbid IFrames" (thanks
<br/>  Grumpy Old Lady for reporting)
<br/>&nbsp;
<br/>v 1.9.7.3
<br/>=====================================================================
<br/>x Fixed IFrame blocking being delayed to DNS resolution when ABE is
<br/>  active (thanks Mike A. for reporting)
<br/>x Fixed Frame blocking leading to extra history entries on unblocking
<br/>&nbsp;
<br/>v 1.9.7.2
<br/>=====================================================================
<br/>x Content serviced with the "Content-disposition: attachment" header
<br/>  (forced downloads) should not be subject to plugin blocking
<br/>  policies (thanks nagan for reporting)
<br/>x ABE checks should be skipped for XHR requests made from chrome
<br/>&nbsp;
<br/>v 1.9.7.1
<br/>=====================================================================
<br/>x Inclusion type checks accomodating hosting errors in AOL gadgets,
<br/>  outbrain.com widgets and E-junkie libraries
<br/>x Fixed es-CL locale metadata

<h2>NoScript Security Suite 1.9.7 - July 24, 2009</h2>
v 1.9.7
<br/>=====================================================================
<br/>x 1.9.6.96 RC repackaged for release
<br/>&nbsp;
<br/>v 1.9.6.96
<br/>=====================================================================
<br/>x Fixed "Send to" context menu item broken Google Toolbar 5 (thanks
<br/>  Juan Ignacio Gaviria for reporting)
<br/>x Fixed cache issues in non-ABE blocking context on Gecko &lt; 1.9
<br/>  caused by alternate blocking method for ABE "Deny" action  (thanks
<br/>  al9_x and Tom T for reporting)
<br/>&nbsp;
<br/>v 1.9.6.95
<br/>=====================================================================
<br/>+ Signed XPI
<br/>x Fixed JS redirect detection overzelous on pages containing CSS
<br/>  content-less links (thanks zaxy for reporting)
<br/>x Fixed issue with plugin content activation (thanks Mel Reyes for
<br/>  reporting)
<br/>&nbsp;
<br/>v 1.9.6.94
<br/>=====================================================================
<br/>x More informative error messages on failed XSS filter DOS attempt
<br/>&nbsp;
<br/>v 1.9.6.93
<br/>=====================================================================
<br/>x Inclusion type checks play smoother on script dynamically served
<br/>  with a wrong Content-type header
<br/>x Fixed temporarily allowing a class of objects from the Blocked
<br/>  Objects menu not working sometimes (thanks Chad Morse for report)
<br/>x Fixed placeholders not working (invalid host name) on Gecko 1.8
<br/>  (thanks hewee for report)
<br/>&nbsp;
<br/>v 1.9.6.92
<br/>=====================================================================
<br/>x More accurate (and lenient towards misconfigured servers) inclusion
<br/>  type checks (thanks makini and Sheilaq for reports)
<br/>&nbsp;
<br/>v 1.9.6.91
<br/>=====================================================================
<br/>x Fixed HTTP Referer header being omitted when a DNS cached record is
<br/>  not found for the request

<h2>NoScript Security Suite 1.9.6.9 - July 22, 2009</h2>
v 1.9.6.9
<br/>=====================================================================
<br/>x Fixed default whitelist not being installed on first run anymore
<br/>  since 1.9.6's fix for multibyte temporary allow / mark as untrusted

<h2>NoScript Security Suite 1.9.6.8 - July 21, 2009</h2>
v 1.9.6.8
<br/>=====================================================================
<br/>x Inclusion content type checking now graces default file extensions
<br/>x Improved XSS filter pre-screening efficiency
<br/>x Prefixed content type based inclusion blocking message

<h2>NoScript Security Suite 1.9.5 - June 29, 2009</h2>
v 1.9.5
<br/>=====================================================================
<br/>x Fixed forbidden objects in allowed documents not causing partially
<br/>  allowed icon on first load in Gecko &lt; 1.9 (thanks al9_x for report)
<br/>x Fixed forbidden objects in mixed trusted/blacklisted pages not
<br/>  causing partially allowed icon (thanks al9_x for report)
<br/>&nbsp;
<br/>v 1.9.4.91
<br/>=====================================================================
<br/>x Fixed late request cancelation of scripts preventing page from
<br/>  complete loading
<br/>x Fixed refreshing ABE rulesets enabling back disabled local rulesets
<br/>&nbsp;
<br/>v 1.9.4.9
<br/>=====================================================================
<br/>x Fixed DNS cache purging bug (thanks therube for reporting)
<br/>&nbsp;
<br/>V 1.9.4.8
<br/>=====================================================================
<br/>x Parallelization of DNS activity bringing huge ABE performance gain
<br/>x Minor fixes in LOCAL policies enforcing
<br/>&nbsp;
<br/>V 1.9.4.7
<br/>=====================================================================
<br/>x Fixed possible deadlock introduced in 1.9.4.6
<br/>x Fixed DNS cache purging bug
<br/>&nbsp;
<br/>v 1.9.4.6
<br/>=====================================================================
<br/>x Refactoring of content policy related code
<br/>x Another memory optimization iteration
<br/>x Restored automatic Seamonkey profile install cleaner
<br/>&nbsp;
<br/>v 1.9.4.5
<br/>=====================================================================
<br/>x Further memory footprint and performance ABE optimizations
<br/>&nbsp;
<br/>v 1.9.4.4
<br/>=====================================================================
<br/>+ Origin tracing speed and accuracy improvements
<br/>+ Enhanced frame busting emulation
<br/>+ Further DNS optimizations 
<br/>&nbsp;
<br/>v 1.9.4.3
<br/>=====================================================================
<br/>x Optimized garbage collection in DNS 2nd level cache 
<br/>&nbsp;
<br/>v 1.9.4.2
<br/>=====================================================================
<br/>x Fixed mixed content SSL false positives when ABE enabled
<br/>x Fixed file:// entry added to whitelist everytime a 2nd level
<br/>  domain gets allowed on Gecko &gt;= 1.9 (thanks GµårÐïåñ for reporting)
<br/>&nbsp;
<br/>v 1.9.4.1
<br/>=====================================================================
<br/>+ Implemented 2nd level DNS cache fixing some artifacts/crashes on
<br/>  Google Maps and some latency issues in Gecko &lt; 1.9 (thanks therube
<br/>  and Alan Baxter for reporting)
<br/>&nbsp;
<br/>v 1.9.4 RC2
<br/>=====================================================================
<br/>x Fixed page content getting randomly scrambled during heavily
<br/>  concurrent loads when ABE's asynchronous networking is enabled
<br/>x Fixed password manager autofill failing sometimes (thanks Tommy Coe
<br/>  for reporting)
<br/>&nbsp;
<br/>v 1.9.4 RC1
<br/>=====================================================================
<br/>+ First stable ABE (Application Boundaries Enforcer) release
<br/>+ Improved JavaScript form submission emulation (thanks aladin235 for
<br/>  reporting about Twitter logout button)
<br/>+ Asyncrhonous networking in Gecko &gt;= 1.9 for ABE preflight requests
<br/>  and DNS checks (can be turned off by noscript.asyncNetworking
<br/>  about:config preference)
<br/>+ noscript.ABE.legacySupport about:config preference to enable ABE
<br/>  on older, less supported platforms (Gecko &lt; 1.9)
<br/>+ Modularized SeaMonkey uninstaller
<br/>+ Bookmarklet emulation made compatible with latest Fx 3.5 builds
<br/>x Better UI feedback about CAPS parsing artifacts
<br/>&nbsp;
<br/>v 1.9.3.92
<br/>=====================================================================
<br/>x Fixed missing site rules being repeatedly fetched after 12 hours
<br/>  timeout
<br/>&nbsp;
<br/>v 1.9.3.91
<br/>=====================================================================
<br/>+ Added <a rel="nofollow" href="http://gstatic.com">gstatic.com</a> (Google Maps and other services) to the default
<br/>  whitelist
<br/>x Fixed broken embeddings from file:// URLs (thanks Endor for report)
<br/>&nbsp;
<br/>v 1.9.3.9
<br/>=====================================================================
<br/>x Fixed import/export buttons for whitelist and full configuration
<br/>  overriding each other (thanks Alan Baxter for reporting)
<br/>&nbsp;
<br/>v 1.9.3.8
<br/>=====================================================================
<br/>+ Precise reporting of ABE DNS failures
<br/>+ Automatically include browser origins in Accept predicates
<br/>x Lighter XSS checks, relying on ABE for pre-screening when possible
<br/>  (preventing some timeout-related false positives and random hangs)
<br/>  
<br/>v 1.9.3.7
<br/>=====================================================================
<br/>+ More accurate NOSCRIPT web-bugs blocking, skipping same origin
<br/>  images and scripted pages (thanks Jorgo for suggestion)
<br/>x Working link to ABE documentation in NoScript Options|Advanced|ABE
<br/>x Fixed ABE external editor failing to open on Mac OS X (thanks David
<br/>  Bass for reporting)
<br/>&nbsp;
<br/>v 1.9.3.6
<br/>=====================================================================
<br/>+ Improved Google Analytics script surrogates
<br/>+ New Imagefap anti-popup script surrogates
<br/>+ Seamonkey 1.x streamlined installation process (profile local
<br/>  installations are not supported anymore, but switching to
<br/>  browser-wide is automatic on update)
<br/>+ Seamonkey 1.x automatic uninstall procedure (button provided in
<br/>  NoScript Options)
<br/>&nbsp;
<br/>v 1.9.3.5
<br/>=====================================================================
<br/>+ Better placeholder management with weird plugin content nesting
<br/>  (thanks nagan for request)
<br/>+ Faster and more streamlined cross-origin request tracking
<br/>x Fixed single aster ("*") glob pattern not compiling in URI pattern
<br/>  lists (thanks Sirdarckcat for reporting)
<br/>x Fixed Fx 2 (Gecko &lt; 1.9) non-secure requests for HTTPS-forced
<br/>  resources being aborted rather than redirected (thanks al_9x for
<br/>  reporting)
<br/>&nbsp;
<br/>v 1.9.3.4
<br/>=====================================================================
<br/>+ First public Application Boundaries Enforcer (ABE) prototype, see
<br/>  NoScript Options|Advanced|ABE
<br/>+ SYSTEM built-in ABE ruleset including one rule emulating LocalRodeo
<br/>  (check <a rel="nofollow" href="http://databasement.net/labs/localrodeo/">http://databasement.net/labs/localrodeo/</a> and
<br/>  <a rel="nofollow" href="http://databasement.net/labs/localrodeo/testcases.php">http://databasement.net/labs/localrodeo/testcases.php</a> )

<h2>NoScript Security Suite 1.9.3.3 - May 23, 2009</h2>
v 1.9.3.3
<br/>=====================================================================
<br/>x Fixed fatal exception on JSON XSS checks (thanks HeikoAdams for
<br/>  report)
<br/>&nbsp;
<br/>v 1.9.3.2
<br/>=====================================================================
<br/>x Fixed whitelist import/export broken by new global import/export (
<br/>  thanks Tim Johnson for report)
<br/>  
<br/>v 1.9.3.1
<br/>=====================================================================
<br/>x Fixed automatic secure cookie management being enabled by default
<br/>  (thanks therube for report)
<br/>&nbsp;
<br/>v 1.9.3
<br/>=====================================================================
<br/>+ Redirect loops caused by HTTPS enforcement now trigger the standard
<br/>  redirect loop error page (thanks Matt McCutchen for RFE)
<br/>x Fixed https-forced embedded objects not being loaded unless already
<br/>  cached (thanks Matt McCutchen for report)
<br/>&nbsp;
<br/>v 1.9.2.93
<br/>=====================================================================
<br/>x Fixed 1.9.2.92 regression breaking "Revoke temporary permissions"
<br/>&nbsp;
<br/>v 1.9.2.92
<br/>=====================================================================
<br/>+ Improved bookmarklet support, trying to turn setTimeout calls into
<br/>  synchronous ones and to execute trusted imported scripts (e.g.
<br/>  in the Readability bookmarklet)
<br/>+ Slighty "beautifyed" JSON export format (one preference per line)
<br/>x Fixed 1.9.2.91 regression, preventing permissions changes made in
<br/>  NoScript Options from being saved under some random circumstances
<br/>  (thanks GµårÐïåñ for reporting)
<br/>&nbsp;
<br/>v 1.9.2.91
<br/>=====================================================================
<br/>+ Import and Export buttons in NoScript Options to backup and restore
<br/>  the whole NoScript configuration (preferences and permissions) to
<br/>  and from a text file.
<br/>&nbsp;
<br/>v 1.9.2.9
<br/>=====================================================================
<br/>+ Native media (audio/video HTML 5 elements) blocking
<br/>x Huge refactoring modularizing XSS, ABE, ClearClick, HTTPS extras
<br/>  and utility classes

<h2>NoScript Security Suite 1.9.2.8 - May 13, 2009</h2>
 1.9.2.8
<br/>=====================================================================
<br/>+ 100x speedup of bookmark-based configuration persistence
<br/>+ NoScript tries to synchronize its configuration with foreign
<br/>  bookmarks when the "Backup configuration in bookmarks" gets enabled
<br/>  in order to ease adding new "slaves"
<br/>x Excluded temporary permissions from bookmark-based synchronization
<br/>x Fixed XMark synchronization failing because of XMark's 4KB limit on
<br/>  bookmark URIs
<br/>x Fixed opening the [NoScript] configuration bookmark hanging the
<br/>  AutoPager extension
<br/>+ Disqus ClearClick exception
<br/>+ Feedly ClearClick exception
<br/>&nbsp;
<br/>v 1.9.2.7
<br/>=====================================================================
<br/>+ "NoScript Options|Notification|Display release notes on update"
<br/>  checkbox
<br/>x Fixed XSLT blocking regression

<h2>NoScript Security Suite 1.9.2.6 - May 1, 2009</h2>
v 1.9.2.6
<br/>=====================================================================
<br/>+ NoScript now automatically removes the controversial "NoScript
<br/>  Development Support Filterset" deployed with NoScript 1.9.2.3 and
<br/>  above on startup, permanently and with no questions asked.

<h2>NoScript Security Suite 1.9.2 - April 23, 2009</h2>
v 1.9.2
<br/>=====================================================================
<br/>+ Experimental "Backup NoScript configuration in a bookmark for easy
<br/>  synchronization" feature (enable it in "NoScript Options|General")
<br/>x Fixed potential DNS leak in some proxied setups when opening URLs
<br/>  with FQDNs as their hostnames (thanks Rolf Wendolsky for report).

<h2>NoScript Security Suite 1.9.1.91 - April 13, 2009</h2>
v 1.9.1.91
<br/>=====================================================================
<br/>x Fixed notifications reporting "Forbidden" on some partially allowed
<br/>  pages
<br/>&nbsp;
<br/>v 1.9.1.9
<br/>=====================================================================
<br/>x Fixed notifications reporting "Partially allowed" on fully allowed
<br/>  pages (thanks Grant Parris for report)
<br/>x Fixed source code (view-source: originated) POST requests being
<br/>  turned into GET requests
<br/>&nbsp;
<br/>v 1.9.1.8
<br/>=====================================================================
<br/>+ New "partially allowed subcontent" icon to indicate that the top
<br/>  site is blocked but some active sub-content (e.g. plugin objects
<br/>  or frames) is enabled
<br/>+ New script sources inventory behavior reporting "Scripts Forbidden"
<br/>  instead of "Scripts Partially Forbidden" even if 3rd party script
<br/>  sources are allowed unless their hosting document is allowed too
<br/>+ New "noscript.clearClick.subexceptions" preference to list sources
<br/>  of embedded content which don't need to be protected by ClearClick
<br/>x ClearClick compatibility with the "ShareThis" extension

<h2>NoScript Security Suite 1.9.1.9 - April 12, 2009</h2>
Bug fix extraordinary release:
<br/>&nbsp;
<br/>v 1.9.1.9
<br/>=====================================================================
<br/>x Fixed notifications reporting "Partially allowed" on fully allowed
<br/>  pages (thanks Grant Parris for report)
<br/>x Fixed source code (view-source: originated) POST requests being
<br/>  turned into GET requests

<h2>NoScript Security Suite 1.9.1.8 - April 10, 2009</h2>
v 1.9.1.8
<br/>=====================================================================
<br/>+ New "partially allowed subcontent" icon to indicate that the top
<br/>  site is blocked but some active sub-content (e.g. plugin objects
<br/>  or frames) is enabled
<br/>+ New script sources inventory behavior reporting "Scripts Forbidden"
<br/>  instead of "Scripts Partially Forbidden" even if 3rd party script
<br/>  sources are allowed unless their hosting document is allowed too
<br/>+ New "noscript.clearClick.subexceptions" preference to list sources
<br/>  of embedded content which don't need to be protected by ClearClick
<br/>x ClearClick compatibility with the "ShareThis" extension
<br/>&nbsp;
<br/>v 1.9.1.7
<br/>=====================================================================
<br/>x Fixed multiple placeholder regression on Gecko &lt; 1.9 (Firefox 2.x)

<h2>NoScript Security Suite 1.9.1.6 - April 1, 2009</h2>
v 1.9.1.6
<br/>=====================================================================
<br/>+ Improved ClearClick specificity on zoomed pages (fixes a false
<br/>  positive on GMail's Flash-based attach link when zoom is active)
<br/>x Temporarily disabled ClearClick on 3.6a1pre because of bug 486200
<br/>&nbsp;
<br/>v 1.9.1.5
<br/>=====================================================================
<br/>+ XSLT stylesheets are regarded as active content and blocked by
<br/>  default on untrusted documents and/or from untrusted origins
<br/>+ "Forbid IFrame" compatibility with the Google Notebook extension
<br/>  (thanks chojrak11 for RFE)
<br/>x Fixed HTTP not enforced on redirected background requests (thanks
<br/>  al_9x for report)
<br/>x Fixed work-around for bug 453825 work-around causing unhandled
<br/>  error messages visible in Firebug (thanks Pavol Goga for report)

<h2>NoScript Security Suite 1.9.1.4 - March 25, 2009</h2>
v 1.9.1.4
<br/>=====================================================================
<br/>x Fixed placeholder size miscalculation for hidden blocked objects
<br/>  (thanks al9_x for report)
<br/>x Fixed HTTPS enforcing on documents causing an initial aborted
<br/>  HTTP documents request on Gecko &lt; 1.9 (thanks al_9x for report)
<br/>&nbsp;
<br/>v 1.9.1.3
<br/>=====================================================================
<br/>x Fixed URIPatternList glob compiling bug (thanks mattmcutchen)

<h2>NoScript Security Suite 1.9.1.2 - March 18, 2009</h2>
v 1.9.1.2
<br/>=====================================================================
<br/>+ HTTPS forced on background requests (images, stylesheets,
<br/>  scripts, embeddings, AJAX...) as well (thanks mattmccutchen's RFE)
<br/>+ Fennec 1.0b1 compatibility
<br/>&nbsp;
<br/>v 1.9.1.1
<br/>=====================================================================
<br/>x Fixeds XSS false positive on SAMLP payloads (thanks MysticOrchid
<br/>  for reporting)

<h2>NoScript Security Suite 1.9.1 - March 11, 2009</h2>
v 1.9.1
<br/>=====================================================================
<br/>x ClearClick performance boost on crowded documents
<br/>x Updated French translation
<br/>x Reduced log spam on content blocking
<br/>&nbsp;
<br/>v 1.9.0.92
<br/>=====================================================================
<br/>+ Yieldmanager script surrogate (thanks orngjce223 for suggestion)
<br/>x Fixed "Attempt to fix JavaScript links" causing middle-clicks to
<br/>  open JS link targets twice on Gecko 1.8 (thanks therube for report)
<br/>&nbsp;
<br/>v 1.9.0.91
<br/>=====================================================================
<br/>+ ClearClick incident reporting tool
<br/>&nbsp;
<br/>v 1.9.0.9
<br/>=====================================================================
<br/>x Fixed 20 seconds hang in injection checker on URLs containing long
<br/>  sequences of the "

<h2>NoScript Security Suite 1.9.0.8 - March 4, 2009</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>
<br/>&nbsp;
<br/>v 1.9.0.8
<br/>=====================================================================
<br/>x Work around for Mozilla bug 453825
<br/>&nbsp;
<br/>v 1.9.0.7
<br/>=====================================================================
<br/>x Work around for SimpleViewer and other Flash movies replaced with
<br/>  innerHTML breaking on nsIContentPolicy presence (thanks Steffen
<br/>  Zahn for reporting).

<h2>NoScript Security Suite 1.9.0.6 - Feb. 22, 2009</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>
<br/>&nbsp;
<br/>v 1.9.0.6
<br/>=====================================================================
<br/>x Fixed page-level surrogates in subframes being executed too much
<br/>  early to be effective (thanks GossamerGremlin for report)
<br/>x Work-around for bug 4066046 (thanks Alice0755)
<br/>x Fixed incompatibility with the wfx_Versions extension (thanks
<br/>  Archaeopteryx for report)
<br/>x Fixed double activation for nested OBJECT elements, e.g. <a rel="nofollow" href="http://apple.com">apple.com</a>
<br/>  QuickTime movies (thanks al_9 for report)
<br/>x Fixed Silverlight applets not intercepted in Gecko 1.8.1.19-20
<br/>  (thanks al_9x for report)

<h2>NoScript Security Suite 1.9.0.5 - Feb. 15, 2009</h2>
v 1.9.0.5
<br/>=====================================================================
<br/>+ Upper limits for JS link detection loop (thanks Wladimir Palant)
<br/>+ about:certerror added to the intrinsic whitelist
<br/>+ ClearClick compatibility with the Link Alert extension
<br/>+ 3rd party script blocking improvements
<br/>x Updated Slovak translation

<h2>NoScript Security Suite 1.9.0.4 - Feb. 6, 2009</h2>
v 1.9.0.4
<br/>=====================================================================
<br/>x Fixed XHTML namespacing issues (thanks dhouwn for report)
<br/>&nbsp;
<br/>v 1.9.0.3
<br/>=====================================================================
<br/>x Fixed E4X hijacking false positive with scripts delimited by XML
<br/>  comments and containing XML (thanks Jim Mattfield for report)
<br/>&nbsp;
<br/>v 1.9.0.2
<br/>=====================================================================
<br/>x Fixed X-FRAME-OPTIONS not working inside OBJECT elements (thanks
<br/>  Joris van der Wel for report)
<br/>x Restored broken compatibility with Seamonkey 1.0.x (thanks James
<br/>  Andrewartha for report)
<br/>  
<br/>v 1.9.0.1
<br/>=====================================================================
<br/>x Work around for edge case false positive on plugins embedded in
<br/>  cross-site framesets (thanks therube for report)

<h2>NoScript Security Suite 1.9 - Jan. 31, 2009</h2>
1.9
<br/>=====================================================================
<br/>+ Improved ClearClick sensitivity (thanks Eric Lawrence for report)
<br/>&nbsp;
<br/>1.8.9.9
<br/>=====================================================================
<br/>+ Experimental X-FRAME-OPTIONS compatibility support (see
<br/>  <a rel="nofollow" href="http://hackademix.net/2009/01/29/x-frame-options-in-firefox/">http://hackademix.net/2009/01/29/x-frame-options-in-firefox/</a> and
<br/>  <a rel="nofollow" href="http://evil.hackademix.net/frameopts/">http://evil.hackademix.net/frameopts/</a> )
<br/>x Updated pt-BR translation
<br/>x Fixed freeze on Poken URLs (thanks ksdz for report)
<br/>x Fixed URIs nested in query string being normalized with trailing
<br/>  slash (thanks Benny Brostrup and Carsten for reporting about
<br/>  <a rel="nofollow" href="http://login.service.csc.dk">login.service.csc.dk</a>)
<br/>&nbsp;
<br/>1.8.9.8
<br/>=====================================================================
<br/>+ Support for page-level surrogate scripts, executed before pages
<br/>  whose URL matches sources patterns starting with "@" start loading
<br/>x Enhanced "catch all" Google Analytics surrogate (thanks Jesse
<br/>  Andrew for reporting)
<br/>x Refactored the Silverlight IsVersionSupported() patch to use
<br/>  ScriptSurrogate.execute()
<br/>x Streamlined Silverlight support
<br/>+ Instant placeholders, being shown before page finishes loading

<h2>NoScript Security Suite 1.8.9.7 - Jan. 25, 2009</h2>
1.8.9.7
<br/>=====================================================================
<br/>x Improved script surrogation reliability
<br/>x Fixed URIValidator preferences not being updated at runtime
<br/>x Updated Sweden locale
<br/>&nbsp;
<br/>v 1.8.9.6
<br/>=====================================================================
<br/>+ Evernote compatibility hacks
<br/>&nbsp;
<br/>v 1.8.9.5
<br/>=====================================================================
<br/>+ Stricter checks for the "Attempt to fix JavaScript link" feature
<br/>  and emulation of form submission links (thanks Jah for report)
<br/>&nbsp;
<br/>v 1.8.9.4
<br/>=====================================================================
<br/>x Fixed minimum sized placeholder potentially exceeding smaller
<br/>  frames (thanks greenhatch for report about BetFair's menu)
<br/>x Fixed ClearClick form bounds miscalculation with negative coords 
<br/>  (thanks Zjakki Willems for report about BlogSpot's search feature)
<br/>x Fixed document loaded in a nested iframe when enabling a blocked
<br/>  legacy frame
<br/>  
<br/>v 1.8.9.3
<br/>=====================================================================
<br/>+ Extensible script surrogate mechanism (surrogating Google Analytics
<br/>  by default, look at noscript.surrogate.* in about:config)
<br/>+ noscript.placeholderMinSize (default 32) forces a minimum
<br/>  pixel size on object placeholders
<br/>x Cleaned up noscript.jsHack for custom usages

<h2>NoScript Security Suite 1.8.9.2 - Jan. 17, 2009</h2>
v 1.8.9.2
<br/>=====================================================================
<br/>x Fixed page loading stalled sometimes when the final destination of
<br/>  a redirected script inclusion gets blocked by NoScript
<br/>&nbsp;
<br/>v 1.8.9.1
<br/>=====================================================================
<br/>x Fixed 3rd party script files starting with an XML comment being
<br/>  "swallowed" (breaking <a rel="nofollow" href="http://myway.com">myway.com</a>, <a rel="nofollow" href="http://netaddress.com">netaddress.com</a> and others)
<br/>&nbsp;
<br/>Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.9 - Jan. 15, 2009</h2>
v 1.8.9
<br/>=====================================================================
<br/>+ New noscript.clearclick.exceptions preference to specify URL
<br/>  patterns of page where clickjacking shouldn't be checked
<br/>x *.ebay.com ClearClick exception to temporarily work-around a false
<br/>  positive on one-click bids too difficult to reproduce
<br/>x Performance optimization of the JSON and E4X hijacking protection
<br/>x Compatibility with Amazon one-click
<br/>x Removed __count__ usage triggering a deprecated warning in Fx 3.0.x
<br/>x Relaxed XSS checks from same-domain HTTPSHTTP requests 
<br/>x Improved E4X hijacking detection, skips leading XML comments in
<br/>  scripts (<a rel="nofollow" href="http://forums.mozillazine.org/viewtopic.php?p=5488645">http://forums.mozillazine.org/viewtopic.php?p=5488645</a>)
<br/>x Updated Japanese translation
<br/>&nbsp;
<br/>v 1.8.8.95
<br/>=====================================================================
<br/>+ JSON and E4X hijacking protection (Gecko &gt;= 1.9.0.4 required)
<br/>&nbsp;
<br/>v 1.8.8.94
<br/>=====================================================================
<br/>x Removed a potential document leak
<br/>&nbsp;
<br/>v 1.8.8.93
<br/>=====================================================================
<br/>x Improved accuracy of the new simulated onchange event handler
<br/>&nbsp;
<br/>v 1.8.8.92
<br/>=====================================================================
<br/>x Work-around for 1.9.2a1 Components.utils.lookupMethod() breakage
<br/>x Restored placeholder outline on 1.9.2a1
<br/>&nbsp;
<br/>v 1.8.8.91
<br/>=====================================================================
<br/>+ Added browser-built-in about:xyz URLs to the permanent whitelist
<br/>+ Simulated onchange event handling for simple HTML select drop-down
<br/>  with URL-like options
<br/>x Work-around for bug 453825 triggered by hack for bug 472495 and
<br/>  breaking <a rel="nofollow" href="http://smugmug.com">smugmug.com</a> Flash-based fullscreen slideshows (thanks
<br/>  Daniel Dorau for reporting)
<br/>&nbsp;
<br/>v 1.8.8.9
<br/>=====================================================================
<br/>+ New zoom-guessing algorithm, giving more accurate results than
<br/>  nsIMarkupDocumentViewer.fullZoom built-in property, to fix
<br/>  ClearClick false positives at some fractional zoom levels
<br/>&nbsp;
<br/>Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.8.8 - Jan. 7, 2009</h2>
v 1.8.8.8
<br/>=====================================================================
<br/>+ Kazakh translation (thanks Baurzhan Muftakhidinov)
<br/>x ClearClick optimization by canvas recycling
<br/>x Work-around for bug 472495
<br/>&nbsp;
<br/>v 1.8.8.7
<br/>=====================================================================
<br/>x Work-around for Windows Media Player embedded objects missing video
<br/>  streams under some circumstances (thanks AteUte52 for reporting)
<br/>&nbsp;
<br/>v 1.8.8.6
<br/>=====================================================================
<br/>x Fixed ClearClick false positive on very narrow frames (e.g. on
<br/>  <a rel="nofollow" href="http://horseracing.betfair.com">http://horseracing.betfair.com</a> - thanks greenhatch for reporting)
<br/>x Fixed XSS false positive on very long indexed CGI parameters lists
<br/>  (e.g. on <a rel="nofollow" href="http://pingoat.com">http://pingoat.com</a> - thanks Daethian for reporting)
<br/>&nbsp;
<br/>Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.8.5 - Dec. 30, 2008</h2>
v 1.8.8.5
<br/>=====================================================================
<br/>x Further optimization of Base64 injection checks
<br/>x More accurate clipping of scrolling frames in ClearClick
<br/>&nbsp;
<br/>v 1.8.8.4
<br/>=====================================================================
<br/>x Performance optimization of Base64 injection checks (thanks Dave
<br/>  Griffiths for reporting an Ebay chatroom issue)
<br/>&nbsp;
<br/>v 1.8.8.3
<br/>=====================================================================
<br/>+ More specific injection checks for scriptless targets
<br/>+ Compatibility with the <a rel="nofollow" href="http://Fire.fm">Fire.fm</a> extension
<br/>x Fixed sporadic swallowed clicks on Google Street View
<br/>&nbsp;
<br/>v 1.8.8.2
<br/>=====================================================================
<br/>x Fixed file:/// not showing anymore in NoScript menus
<br/>&nbsp;
<br/>v 1.8.8.1
<br/>=====================================================================
<br/>x Fixed possible long-running loop on complex JSON-like requests
<br/>&nbsp;
<br/>Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.8 - Dec. 24, 2008</h2>
v 1.8.8
<br/>=====================================================================
<br/>x Fixed rare ClearClick false positives on the bottom edge of
<br/>  scrolling frames
<br/>x Fixed ClearClick false positive on some cnbc.com videos
<br/>&nbsp;
<br/>v 1.8.7.8
<br/>=====================================================================
<br/>+ Compatibility with Fennec Alpha 2
<br/>&nbsp;
<br/>v 1.8.7.7
<br/>=====================================================================
<br/>+ InjectionChecker checks HTML injections on untrusted targets too
<br/>+ Chained and nested JSON support (necessary to graceufully handle
<br/>  some Facebook APIs)
<br/>x Fixed too much aggressive data: URL sanitization
<br/>x Fixed sites whose URL doesn't support host not showing in menu
<br/>  (thanks timeless for report)

<h2>NoScript Security Suite 1.8.7.6 - Dec. 17, 2008</h2>
v 1.8.7.6
<br/>=====================================================================
<br/>x Improved specificity for "location=code" injection checks
<br/>x Compatibility with Facebook Connect JSON patterns
<br/>&nbsp;
<br/>v 1.8.7.5
<br/>=====================================================================
<br/>x Heavy optimization of JSON reduction routine (up to 100x speedup),
<br/>  thanks Brian Krebs and Amy Buzby for reports and samples
<br/>x Fixed top-level plugin content difficult to allow by clicking its
<br/>  placeholder when other plugin-interacting extensions are active
<br/>&nbsp;
<br/>Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.7.4 - Dec. 8, 2008</h2>
v 1.8.7.4
<br/>=====================================================================
<br/>+ Contextual disablement with visual feedback for "Revoke temporary
<br/>  permissions" and "Temporarily allow all on this page" toolbar
<br/>  buttons (thanks WAPCE for suggestion).
<br/>x Improved early detection of event attribute XSS
<br/>x Updated Arabic translation by Khaled Hosny
<br/>&nbsp;
<br/>v 1.8.7.3
<br/>=====================================================================
<br/>x Better viewport framing when scrollbars are present (thanks
<br/>  timeless for report)
<br/>x Compatibility with Firefox 3.2a1pre
<br/>&nbsp;
<br/>1.8.7.2
<br/>=====================================================================
<br/>x Work-around for Google Toolbar 5 Beta conflict
<br/>x Work-around for newTabURL incompatibility
<br/>x Adaptation to bug 464754
<br/>&nbsp;
<br/>1.8.7.1
<br/>=====================================================================
<br/>x Fixed issues with noscript.forbidIFrameContext = 0 (thanks Aerik
<br/>  for report)
<br/>&nbsp;
<br/>Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.7 - Dec. 1, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.6 - Nov. 23, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.5 - Nov. 15, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.4.1 - Nov. 7, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.4 - Nov. 7, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.3.6 - Oct. 27, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.3.3 - Oct. 19, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.3.2 - Oct. 19, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.3 - Oct. 17, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.2.8 - Oct. 12, 2008</h2>
1.8.2.8 fixes an issue with external protocol (mailto:, e2k:, irc:...) not working.
<br/><a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.2.4 - Oct. 10, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.2.3 - Oct. 10, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.2.2 - Oct. 10, 2008</h2>
1.8.2.2 improves ClearClick accuracy, reducing false positives rate near to 0 and making it usable on trusted sites as well.
<br/>More details: 
<br/><a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>
<br/><a rel="nofollow" href="http://noscript.net/faq#clearclick">http://noscript.net/faq#clearclick</a>

<h2>NoScript Security Suite 1.8.2.1 - Oct. 7, 2008</h2>
1.8.2.1 backports the new ClearClick functionality to be compatible with Firefox 2.x, Seamonkey 1.1.x and other Gecko 1.8.1 browsers.
<br/>&nbsp;
<br/><a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.2 - Oct. 7, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.1.3 - Sept. 17, 2008</h2>
1.8.1.2 and 1.8.1.3 fix all the reported login problems AND turn off the Automatic Secure Cookie Management by default, so have no fear to install.
<br/>Anyway, if you decide to turn Automatic Secure Cookie Management on, your feedback about this new feature is very appreciated.
<br/>&nbsp;
<br/>Details on <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a> and <a rel="nofollow" href="http://noscript.net/faq#https">http://noscript.net/faq#https</a>

<h2>NoScript Security Suite 1.8.1.2 - Sept. 17, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.8.1 - Sept. 15, 2008</h2>
Brand new HTTPS and cookies features,
<br/>see <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a> and <a rel="nofollow" href="http://noscript.net/faq#https">http://noscript.net/faq#https</a>

<h2>NoScript Security Suite 1.8 - Aug. 30, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7.9 - Aug. 19, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7.8 - Aug. 5, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7.7 - July 15, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7.6 - July 5, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7.4 - June 28, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7.1 - June 25, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.7 - June 25, 2008</h2>
<a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.9.3 - June 16, 2008</h2>
Out-of-cycle update for serious Ebay XSS issue plus regression fix.
<br/>&nbsp;
<br/>Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.9.2 - June 16, 2008</h2>
Critical out-of-cycle anti-XSS filter fix, indispensable for Ebay users.
<br/>&nbsp;
<br/>Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.9.1 - June 15, 2008</h2>
All the changes in this release at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.9 - June 7, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.8 - May 30, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.7 - May 30, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.5 - May 9, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6.4 - April 27, 2008</h2>
Detailed development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.6 - April 14, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.5.8 - April 7, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.5.6 - March 27, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.5.2 - March 17, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.5 - March 16, 2008</h2>
Full change history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>
<br/>&nbsp;
<br/>If you use trunk build, please help testing development builds (when available) from <a rel="nofollow" href="http://noscript.net/getit#devel">http://noscript.net/getit#devel</a>

<h2>NoScript Security Suite 1.4.9.5 - March 6, 2008</h2>
Development versions are available at <a rel="nofollow" href="http://noscript.net/getit#devel">http://noscript.net/getit#devel</a> (please use them if you're using Firefox 3 beta or a Gecko trunk build).
<br/>&nbsp;
<br/>Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.4.9 - Feb. 27, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.4 - Feb. 15, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.3.2 - Feb. 2, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.3.1 - Jan. 21, 2008</h2>
Full development history: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.3 - Jan. 21, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.2.9 - Jan. 10, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.2.6 - Jan. 6, 2008</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.2 - Dec. 25, 2007</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.9.6 - Dec. 15, 2007</h2>
Full development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.9 - Dec. 5, 2007</h2>
Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.8.3 - Nov. 21, 2007</h2>
SeaMonkey users, please install 1.1.8.4 from <a rel="nofollow" href="http://noscript.net/getit#direct">http://noscript.net/getit#direct</a>
<br/>&nbsp;
<br/>Detailed change history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.8 - Nov. 10, 2007</h2>
Detailed change history: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.7.7 - Nov. 4, 2007</h2>
SEAMONKEY USERS:
<br/>please install from <a rel="nofollow" href="http://noscript.net/getit#direct">http://noscript.net/getit#direct</a> to avoid a "Script error" during setup.
<br/>&nbsp;
<br/>Version history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.7.6 - Nov. 4, 2007</h2>
Details at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.7.2 - Sept. 15, 2007</h2>
Detailed changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.7 - Sept. 10, 2007</h2>
Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.21 - Sept. 3, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.20 - Sept. 3, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.16 - Aug. 20, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.15 - Aug. 18, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.12 - July 31, 2007</h2>
Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.08 - July 25, 2007</h2>
Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.07 - July 25, 2007</h2>
Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.06 - July 24, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6.02 - July 7, 2007</h2>
Detailed development history at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.6 - July 6, 2007</h2>
Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.5 - June 28, 2007</h2>
Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.9.070622 - June 22, 2007</h2>
New protection against cross-browser exploits.
<br/>&nbsp;
<br/>Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.9 - June 19, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.8.070523 - May 26, 2007</h2>
Detailed changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.8.070521 - May 21, 2007</h2>
Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.8.070514 - May 20, 2007</h2>
Full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.8.070430 - May 1, 2007</h2>
Detailed changes history: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.8.070423 - April 23, 2007</h2>
Detailed changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.8 - April 20, 2007</h2>
Detailed changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.7 - April 11, 2007</h2>
Version details at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.6.070317 - March 22, 2007</h2>
Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.6.070307 - March 7, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.6.070304 - March 5, 2007</h2>
Detailed changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.6.070302 - March 2, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.6 - Feb. 28, 2007</h2>
Detailed changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.5.061221 - Dec. 21, 2006</h2>
Version details at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.5.061206 - Dec. 6, 2006</h2>
Version details: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.5.061030 - Oct. 30, 2006</h2>
Full details at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.5 - Oct. 17, 2006</h2>
Version details at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.4 - Oct. 8, 2006</h2>
Version details at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4.3 - Sept. 10, 2006</h2>
+ Emulated Firefox 1.0.x top-level plugin content blocking behaviour
<br/>+ fa-IR (Persian) thanks to Pedram Veisi
<br/>+ en-GB (English GB) thanks to Ian Moody
<br/>+ el-GR (Greek) thanks to Sonickydon
<br/>+ hr-HR (Croatian) thanks to Krcko
<br/>+ th-TH (Thai) thanks to Qen
<br/>+ uk-UA (Ukrainian) thanks to MozUA
<br/>x Other updated translations
<br/>x Fixed plugin content reloading bug

<h2>NoScript Security Suite 1.1.4.2 - Sept. 9, 2006</h2>
v 1.1.4.2
<br/>=====================================================================
<br/>+ Notifications Firefox 2+ compatible
<br/>x Fixed whitelist import bug
<br/>x Fixed "removeLinkFixer" warning (thanks to Pablo)

<h2>NoScript Security Suite 1.1.4.1 - May 8, 2006</h2>
Detailed changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.4 - April 9, 2006</h2>
Full changelog: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.9 - Jan. 26, 2006</h2>
Bug fix release. Main
<br/>new features: javascript links are automatically turned into "normal" safely clickable ones, the new "ping" link attribute is automatically disabled and more... Detailed changelog at <a rel="nofollow" href="http://flashgot.net">http://flashgot.net</a>

<h2>NoScript Security Suite 1.1.3.8 - Jan. 23, 2006</h2>
Version 1.1.3.8 fixes eastern languages bugs and abandones the "permanent" whitelist. Main
<br/>new features: javascript links are automatically turned into "normal" safely clickable ones, the new "ping" link attribute is automatically disabled and more... see full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.7 - Jan. 22, 2006</h2>
1.1.3.7 FIXES "FOREIGN LANGUAGE" BUG happening with Fx 1.0.7 - new features: javascript links are automatically turned into "normal" safely clickable ones, the new "ping" link attribute is automatically disabled and more... see full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.6 - Jan. 21, 2006</h2>
Main news: javascript links are automatically turned into "normal" safely clickable ones, the new "ping" link attribute is automatically disabled and more... see full changelog at <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.5 - Dec. 8, 2005</h2>
1.1.3.5 version details: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.4 - Nov. 10, 2005</h2>
1.1.3.4 version details on <a rel="nofollow" href="http://noscript.net">http://noscript.net</a>

<h2>NoScript Security Suite 1.1.3.3 - Oct. 17, 2005</h2>
1.1.3.3 version details: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.2 - Sept. 24, 2005</h2>
1.1.3.2 version details: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3.1 - Sept. 23, 2005</h2>
1.1.3.1 version details: <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.3 - Sept. 18, 2005</h2>
1.1.3 version details on <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a>

<h2>NoScript Security Suite 1.1.2.20050901 - Sept. 1, 2005</h2>
See <a rel="nofollow" href="http://noscript.net/changelog">http://noscript.net/changelog</a> for version notes

<h2>NoScript Security Suite 1.1.2 - Aug. 31, 2005</h2>
1.1.2 is repackaged for Firefox 1.6 alpha compatibility, and contains huge performance improvements as well as Mozilla Java/Flash/Plugin blocking.

<h2>NoScript Security Suite 1.1.1 - Aug. 1, 2005</h2>
Version 1.1.1 is an hotfix release for a whitelist synchronization bug and a spanish locale issue.
<br/>Version 1.1.0 main news: Java, Flash and other plugins blocking (Firefox only), customizable audio feedback sample, customizable message position, better icons. See <a rel="nofollow" href="http://www.noscript.net/changelog">http://www.noscript.net/changelog</a> for full details.

<h2>NoScript Security Suite 1.1.0 - Aug. 1, 2005</h2>
Version 1.1.0 main news: Java, Flash and other plugins blocking (Firefox only), customizable audio feedback sample, customizable message position, better icons. See <a rel="nofollow" href="http://www.noscript.net/changelog">http://www.noscript.net/changelog</a> for full details.

<h2>NoScript Security Suite 1.0.9 - June 14, 2005</h2>
1.0.9 main news: long awaited "Temporarily allow..." command and greatly improved stability - read full changelog in <a rel="nofollow" href="http://www.noscript.net">http://www.noscript.net</a>

<h2>NoScript Security Suite 1.0.8 - May 31, 2005</h2>
1.0.8 handles URL with non-standard ports (e.g. 127.0.0.1:8080) in a smarter way. 

<h2>NoScript Security Suite 1.0.7 - May 27, 2005</h2>
1.0.7 news: 
<br/>"Popup blocker" style notification (Firefox only) and a more discreet sound effect (both optional!); 
<br/>Autoreload synchronizes every view whose permissions have changed; 
<br/>Updated and new translations; 
<br/>Better UI support for numeric addresses and "special" TLDS like co.uk, co.nz and others.

<h2>NoScript Security Suite 1.0.6 - May 24, 2005</h2>
1.0.6 main news: Whitelist import/export; less cluttered "Allow" menu; Audio feedback;
<br/>about:config/noscript.permanent can be changed without FF restart; fixed XUL error pages issue

<h2>NoScript Security Suite 1.0.5 - May 21, 2005</h2>
1.0.5 changes: new "Appearance" tab in Options Dialog lets you hide/show context menu and status bar icon; no more cluttering from http[s]:// prefixed to 2nd level domains (they're auto-hidden in whitelist); menu layout is fixed (no dummy space at the bottom anymore)

<h2>NoScript Security Suite 1.0.4 - May 20, 2005</h2>
1.0.4 news: http:// and https:// automatically prefixed to 2nd level domains for better compatibility with certain sites (thanks to Laura for report); correct status feedback for chrome:// URLs (thanks to pacanukeha)

<h2>NoScript Security Suite 1.0.3 - May 17, 2005</h2>
1.0.3 main news:
<br/>* Feedback about actual presence of script elements in current page; 
<br/>* Feedback about partial permissions in pages containing subframes;
<br/>* Added hotmail/msn/passport domains to default whitelist; 
<br/>* Various other improvements in stability, performance and usability
<br/>&nbsp;
<br/>- see <a rel="nofollow" href="http://www.noscript.net/changelog">http://www.noscript.net/changelog</a> for more...

<h2>NoScript Security Suite 1.0.2 - May 16, 2005</h2>
1.0.2 main news: support for URLs with non-standard port numbers; usability improvements; French translation.

<h2>NoScript Security Suite 1.0.1 - May 14, 2005</h2>
News in 1.0.1: + Contextual menu for easy operation in statusbar-less windows;
<br/>+ Tested with hotmail, gmail and the like;
<br/>+ Current page is automatically reloaded when permissions are changed;
<br/>+ Support for implicit subdomain inclusion (e.g. if you add  mozilla.org, you allow www.mozilla.org, addons.mozilla.org etc.);
<br/>+ German translation (thanks to my friend Thomas Weber);
<br/>x Work around for Firefox sporadic crashes in some configurations

<h2>NoScript Security Suite 1.0 - May 13, 2005</h2>
[no description]

</body>
</html>