-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfire_example.xml
1058 lines (979 loc) · 67.9 KB
/
fire_example.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<searchresults total_results="280">
<addon id="1843">
<name>Firebug</name>
<type id="1">Extension</type>
<guid>[email protected]</guid>
<version>1.7.0</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="9265">
<name>Joe Hewitt</name>
<link>https://addons.allizom.org/en-us/firefox/user/9265/?src=api</link>
</author><author id="2226426">
<name>johnjbarton</name>
<link>https://addons.allizom.org/en-us/firefox/user/2226426/?src=api</link>
</author><author id="95117">
<name>robcee</name>
<link>https://addons.allizom.org/en-us/firefox/user/95117/?src=api</link>
</author><author id="4957771">
<name>FirebugWorkingGroup</name>
<link>https://addons.allizom.org/en-us/firefox/user/4957771/?src=api</link>
</author><author id="857086">
<name>Jan Odvarko</name>
<link>https://addons.allizom.org/en-us/firefox/user/857086/?src=api</link>
</author> </authors>
<summary>Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page...
This is our production release. For Firefox 4.0b, see below.</summary>
<description><strong>
Firefox 4.0 users: install Firebug 1.7
Firefox 3.6 users: install <a href="http://outgoing.mozilla.org/v1/18178703a8e05092fda2bc4b50303afd30cf66b8/https%3A//addons.mozilla.org/en-us/firefox/addon/firebug/versions/1.6.2" rel="nofollow">Firebug 1.6</a>
</strong>
Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.
Visit the Firebug website for documentation, screen shots, and discussion forums: <a href="http://outgoing.mozilla.org/v1/55ffa71b78949ac50e502727b45ad0e0690cec98/http%3A//getfirebug.com" rel="nofollow">http://getfirebug.com</a>
Firebug for older and for beta versions of Firefox is available from <a href="http://outgoing.mozilla.org/v1/3e6a9739c6e8775a118c9c127abeb725ee433678/http%3A//getfirebug.com/releases/firebug" rel="nofollow">http://getfirebug.com/releases/firebug</a></description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/1843-32.png?modified=1300780225</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>4.0b12</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52710.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52710.png?src=api&modified=1295279900
</thumbnail><caption>Command line and its auto-completion.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52711.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52711.png?src=api&modified=1295279900
</thumbnail><caption>Console panel with an example error logs.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52712.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52712.png?src=api&modified=1295279900
</thumbnail><caption>CSS panel with inline editor.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52713.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52713.png?src=api&modified=1295279900
</thumbnail><caption>DOM panel displays structure of the current page.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52714.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52714.png?src=api&modified=1295279900
</thumbnail><caption>HTML panel shows markup of the current page.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52715.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52715.png?src=api&modified=1295279900
</thumbnail><caption>Layout panel reveals layout of selected elements.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52716.png?src=api&modified=1295279900
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52716.png?src=api&modified=1295279900
</thumbnail><caption>Net panel monitors HTTP communication.</caption></preview><preview position="1">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/52/52717.png?src=api&modified=1295279901
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/52/52717.png?src=api&modified=1295279901
</thumbnail><caption>Script panel allows to explore and debug JavaScript on the current page.</caption></preview></previews><rating>5</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/firebug/?src=api</learnmore><install hash="sha256:9e1929c5fed31597d15f4c8f7e90be5395a2bfc4529b6a672bc26cfe551c0865" os="ALL" size="1318912">https://addons.allizom.org/firefox/downloads/file/114839/firebug-1.7.0-fx.xpi?src=api</install>
<install hash="sha256:cd177b8b0349da9a430f6cdd52bd6d259f41dcc5869f99c8317d72606e14a7a4" os="" size="1318912" status="Beta">
https://addons.allizom.org/firefox/downloads/file/114815/firebug-1.7X.0b4-fx.xpi?src=api
</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/firebug/contribute/?src=api</link>
<suggested_amount currency="USD" amount="10.00">
$10.00
</suggested_amount>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/firebug/developers?src=api
</meet_developers>
</contribution_data><developer_comments>If you have any problems, please read the Firebug FAQ.
<a href="http://outgoing.mozilla.org/v1/66081b6c09e8af4862a003442794f2d2c2bc9096/http%3A//getfirebug.com/wiki/index.php/FAQ">http://getfirebug.com/wiki/index.php/FAQ</a>
</developer_comments>
<reviews num="1012">
https://addons.allizom.org/en-us/firefox/addon/firebug/reviews/?src=api
</reviews>
<total_downloads>34444644</total_downloads>
<weekly_downloads>335138</weekly_downloads>
<daily_users>2122259</daily_users>
<created epoch="1137054450">
2006-01-12T08:27:30Z
</created>
<last_updated epoch="1300778385">
2011-03-22T07:19:45Z
</last_updated>
<homepage>http://getfirebug.com/</homepage>
<support>http://getfirebug.com</support></addon>
<addon id="10868">
<name>Firefox Sync</name>
<type id="1">Extension</type>
<guid>{340c2bbc-ce74-4362-90b5-7c26312808ef}</guid>
<version>1.7</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="5133025">
<name>Mozilla Labs</name>
<link>https://addons.allizom.org/en-us/firefox/user/5133025/?src=api</link>
</author> </authors>
<summary>Free browser add-on that lets you stay in sync with your Firefox. Access your history, passwords, bookmarks and even open tabs across all your devices.
Note: Easy setup requires the latest Firefox Beta and is not available for the add-on.</summary>
<description><strong>Stay in Sync With Your Firefox</strong>
<strong>Why Sync Up?</strong>
<strong>Get Up and Go</strong>
Looking at driving directions or reservation times on your desktop but need to
leave in a hurry? Just get up and go and have your history and open tabs
waiting for you on your mobile phone. Or, stop your work and pick up where you
left off on your home computer.
<strong>Never Start From Scratch</strong>
Get a new computer or phone, but always have your Firefox. Don't worry about
resetting passwords or retyping long and painful URLs that you've already
visited. Firefox Sync saves your bookmarks, passwords and form data so you can
hit the ground running at your desk or on the go.
<strong>Security</strong>
Your information is encrypted so only you can access it when you enter your
Sync Key. Firefox puts security as a top priority and syncing is no exception.
* Note: The initial sync after you create an account may take some time to complete. Upon the initial sync completion, you will be able to access your data from other computers and devices.</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/10868-32.png?modified=1299707408</icon>
<compatible_applications><application>
<name>SeaMonkey</name>
<application_id>59</application_id>
<min_version>2.0a3</min_version>
<max_version>2.1b1</max_version>
<appID>{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}</appID>
</application><application>
<name>Mobile</name>
<application_id>60</application_id>
<min_version>1.0b6pre</min_version>
<max_version>4.0.*</max_version>
<appID>{a23983c0-fd0e-11dc-95ff-0800200c9a66}</appID>
</application><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>3.5</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/30/30019.png?src=api&modified=1275071306
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/30/30019.png?src=api&modified=1275071306
</thumbnail><caption>Firefox Sync Logo</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/30/30487.png?src=api&modified=1267147476
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/30/30487.png?src=api&modified=1267147476
</thumbnail></preview></previews><rating>2</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/firefox-sync/?src=api</learnmore><install hash="sha256:18c10c68382d01f9d2b2506e9d0bab275514184d0550a3027c26aaa798617667" os="ALL" size="612352">https://addons.allizom.org/firefox/downloads/file/113706/firefox_sync-1.7-sm+fn+fx.xpi?src=api</install>
<developer_comments><strong>Note: <strong> Easy setup requires the latest Firefox Beta and is not available for the add-on. You can download the latest Beta from <a href="http://outgoing.mozilla.org/v1/a0608f315091d76dca63538d42cb440562b6b52c/http%3A//firefox.com/beta.">http://firefox.com/beta.</a>
</strong></strong></developer_comments>
<reviews num="1182">
https://addons.allizom.org/en-us/firefox/addon/firefox-sync/reviews/?src=api
</reviews>
<total_downloads>5691231</total_downloads>
<weekly_downloads>104663</weekly_downloads>
<daily_users>234860</daily_users>
<created epoch="1235461397">
2009-02-24T07:43:17Z
</created>
<last_updated epoch="1299707258">
2011-03-09T21:47:38Z
</last_updated>
<homepage>http://www.firefox.com/sync</homepage>
<support>http://support.mozilla.com/kb/What+is+Firefox+Sync</support></addon>
<addon id="6366">
<name>FireGestures</name>
<type id="1">Extension</type>
<guid>[email protected]</guid>
<version>1.6.2</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="256">
<name>Gomita</name>
<link>https://addons.allizom.org/en-us/firefox/user/256/?src=api</link>
</author> </authors>
<summary>A customizable mouse gestures extension which enables to execute various commands and user scripts with five types of gestures.</summary>
<description>You can execute various commands and user scripts with five types of mouse gestures:
- Mouse Gestures (Move mouse with holding right-click)
- Wheel Gestures (Scroll wheel with holding right-click)
- Rocker Gestures (Left-click with holding right-click and vice versa)
- Keypress Gestures (Mouse gesture with holding Ctrl / Shift key)
- Tab Wheel Gestures (Scrolling wheel on the tab bar)
Additionally, you can install and make your own scripts to add functions. For more details, please visit the homepage.
<a href="http://outgoing.mozilla.org/v1/08d09cadadfed1934a5de5a1387c088c98b1f815/http%3A//www.xuldev.org/firegestures/">http://www.xuldev.org/firegestures/</a></description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/6366-32.png?modified=1301357645</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>3.5</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/51/51401.png?src=api&modified=1291138538
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/51/51401.png?src=api&modified=1291138538
</thumbnail><caption>Mouse Gesture</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/51/51402.png?src=api&modified=1291138538
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/51/51402.png?src=api&modified=1291138538
</thumbnail><caption>Options (1)</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/51/51403.png?src=api&modified=1291138538
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/51/51403.png?src=api&modified=1291138538
</thumbnail><caption>Options (2)</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/51/51404.png?src=api&modified=1291138538
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/51/51404.png?src=api&modified=1291138538
</thumbnail><caption>Options (3)</caption></preview></previews><rating>4</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/firegestures/?src=api</learnmore><install hash="sha256:86793fdd11e9cb0c240d13b235a50b2d0bb5eeaae559928e9f6d33a34b879ad3" os="ALL" size="83968">https://addons.allizom.org/firefox/downloads/file/115076/firegestures-1.6.2-fx.xpi?src=api</install>
<install hash="sha256:ec245135eccc16327e6d457cafb17ff37d163b171b9a91ab27335fa558a71ee1" os="" size="83968" status="Beta">
https://addons.allizom.org/firefox/downloads/file/116044/firegestures-1.6.3b1-fx.xpi?src=api
</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/firegestures/contribute/?src=api</link>
<suggested_amount currency="USD" amount="2.99">
$2.99
</suggested_amount>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/firegestures/developers?src=api
</meet_developers>
</contribution_data><developer_comments/>
<reviews num="425">
https://addons.allizom.org/en-us/firefox/addon/firegestures/reviews/?src=api
</reviews>
<total_downloads>6480753</total_downloads>
<weekly_downloads>96562</weekly_downloads>
<daily_users>514175</daily_users>
<created epoch="1200732213">
2008-01-19T08:43:33Z
</created>
<last_updated epoch="1301357602">
2011-03-29T00:13:22Z
</last_updated>
<homepage>http://www.xuldev.org/firegestures/</homepage>
<support>http://www.xuldev.org/firegestures/</support></addon>
<addon id="684">
<name>FireFTP</name>
<type id="1">Extension</type>
<guid>{a7c6cf7f-112c-4500-a7ea-39801a327e5f}</guid>
<version>1.99.2</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="167">
<name>Mime Čuvalo</name>
<link>https://addons.allizom.org/en-us/firefox/user/167/?src=api</link>
</author> </authors>
<summary>FireFTP is a free, secure, cross-platform FTP/SFTP client for Mozilla Firefox which provides easy and intuitive access to FTP/SFTP servers.</summary>
<description>Along with transferring your files quickly and efficiently, FireFTP also includes more advanced features such as: directory comparison, syncing directories while navigating, SFTP, SSL encryption, search/filtering, integrity checks, remote editing, drag &amp; drop, file hashing, and much more!</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/684-32.png?modified=1300808885</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>4.0b1</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/15/15960.png?src=api&modified=1187953401
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/15/15960.png?src=api&modified=1187953401
</thumbnail></preview><preview position="1">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/9/9570.png?src=api&modified=0
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/9/9570.png?src=api&modified=0
</thumbnail><caption>Manage files with ease</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/15/15919.png?src=api&modified=1187727246
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/15/15919.png?src=api&modified=1187727246
</thumbnail></preview></previews><rating>4</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/fireftp/?src=api</learnmore><install hash="sha256:7ada062b232b12f758533af470b36dc97b8cdf6aa9a48a66ba997ef1ce961146" os="ALL" size="327680">https://addons.allizom.org/firefox/downloads/file/114586/fireftp-1.99.2-fx.xpi?src=api</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/fireftp/contribute/?src=api</link>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/fireftp/developers?src=api
</meet_developers>
</contribution_data><developer_comments>Homepage: <a href="http://outgoing.mozilla.org/v1/0a467c4f0dfd6e9a726b92a27055a57215057653/http%3A//fireftp.mozdev.org">http://fireftp.mozdev.org</a>
Other Languages and Versions: <a href="http://outgoing.mozilla.org/v1/e67c79ea076c464e6d4aa367328dbb0251480dd5/http%3A//fireftp.mozdev.org/all.html">http://fireftp.mozdev.org/all.html</a></developer_comments>
<reviews num="587">
https://addons.allizom.org/en-us/firefox/addon/fireftp/reviews/?src=api
</reviews>
<total_downloads>18488800</total_downloads>
<weekly_downloads>93589</weekly_downloads>
<daily_users>1241712</daily_users>
<created epoch="1115364095">
2005-05-06T07:21:35Z
</created>
<last_updated epoch="1300808862">
2011-03-22T15:47:42Z
</last_updated>
<homepage>http://fireftp.mozdev.org</homepage>
<support>http://fireftp.mozdev.org/help.html</support></addon>
<addon id="188421">
<name>AddonFox - Best Firefox Addons!</name>
<type id="1">Extension</type>
<guid>{ad48108d-92a6-4eb9-87e4-978aca1dbae4}</guid>
<version>1.1.7</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="2655636">
<name>Linkular LLC</name>
<link>https://addons.allizom.org/en-us/firefox/user/2655636/?src=api</link>
</author> </authors>
<summary>Automatically install the best Firefox addons! Includes over one hundred hand-picked addons from the following categories: Customization, Downloads, Fun, Languages, Media, Programming, Security, Privacy, Social, and Visual. Easily choose which addons you want and get them installed all at once.</summary>
<description>AddonFox is an automatic installer that let's you choose which addons you want from the categories that interest you and then automatically installs all of the addons at once. Over one hundred hand picked addons carefully chosen with improved descriptions. Easily boost your Firefox with the best Firefox addons.
Feast your eyes on this extensive collection of outstanding addons, conveniently organized in categories: Customization, Downloads, Fun, Languages, Media, Programming, Security, Privacy, Social and Visual.
<b>Main Features</b>
✔ Multiple addons are installed automatically according to your choice (We have over a hundred in the collection)
✔ Each addon is accompanied by a concise description and a link for more information
✔ You can personalize AddonFox by adding or removing addons after initial installation
✔ Many addons are configurable for a better user experience
When initially installing AddonFox, not all the addons included are on by default. We started you off with our editors' choices but you can always add or remove any addon to suit your personal needs.
The following categories and addons are included:
<strong>Customization</strong>
✔ <b>Add to Search Bar</b> - Make any pages' search functionality available in the Search Bar
✔ <b>Autofill Forms</b> - Enables you to fill out web forms with one click or a keyboard shortcut
✔ <b>AutoPager</b> - Automatically loads next pages when you reach the end of a page
✔ <b>Firefox Sync</b> - Access your history, passwords, bookmarks, and open tabs across your devices
✔ <b>Google Shortcuts</b> - Display all of your Google Services as buttons anywhere you like
✔ <b>Greasemonkey</b> - Customize any site using thousands of user scripts
✔ <b>KwiClick</b> - Delivers search results in a small popup window for any selected text
✔ <b>Menu Editor</b> - Rearrange menu items in the context menu and the main menu bar
✔ <b>New Tab King</b> - Adds most visited sites, recently closed tabs, and suggested sites to new tabs
✔ <b>Organize Search Engines</b> - Organize your search engines with separators and folders
✔ <b>Organize Status Bar</b> - Organize your status bar icons
✔ <b>QuickJava</b> - Quick enable and disable of Java, Javascript, Flash, Silverlight and images
✔ <b>Samfind Bookmarks Bar</b> - Quickest, easiest way to access your favorite websites
✔ <b>Speed Dial</b> - Direct access to your most visited websites
✔ <b>Tab Mix Plus</b> - Duplicate tabs, control tab focus, undo closed tabs and windows, etc.
<strong>Downloads</strong>
✔ <b>Download Manager Tweak</b> - Open the download manager in a tab or sidebar, and get more info
✔ <b>Download Statusbar</b> - View and manage downloads from a tidy statusbar
✔ <b>DownThemAll</b> - Download manager and accelerator
✔ <b>NetVideoHunter</b> - Download videos and music from video sites like Youtube
✔ <b>SkipScreen</b> - Skips unnecessary pages on sites like Rapidshare, Megaupload, zShare, etc.
<strong>Fun</strong>
✔ <b>Destroy the Web</b> - Turn any webpage into a shoot-em up video game
✔ <b>FootieFox</b> - Live soccer scores for over 200 leagues and cups of 60 countries
✔ <b>Kidoz TV</b> - Turn your browser into a safe kids Web TV, safe easy and fun
✔ <b>KidZui</b> - Turns Firefox into fun, kid-safe browser and online playground for kids 3-12
✔ <b>Puzzle</b> - Turn any image to puzzle pieces and play
✔ <b>StumbleUpon</b> - Get random websites suited to your tastes with one click
✔ <b>Zoodles</b> - Turn Firefox into a safe, virtual playground for kids 3-8
<strong>General</strong>
✔ <b>Billeo</b> - Flags your search results where discounts and promotions are available
✔ <b>Context Search</b> - Changes the context menu search into a menu with installed search engines
✔ <b>Feedly</b> - Organizes your favorite sources in a magazine-like start page
✔ <b>Forecastfox</b> - Adds live international weather forecast icons to the statusbar
✔ <b>FoxClocks</b> - Puts small world clocks in your statusbar
✔ <b>Linkification</b> - Converts text links into genuine, clickable links
✔ <b>MyBookmarks</b> - Creates a formatted page from bookmarks
✔ <b>ReloadEvery</b> - Reloads web pages every so many seconds or minutes
✔ <b>ReminderFox</b> - Displays and manages lists of reminders and ToDo's
✔ <b>Resurrect Pages</b> - When going to a missing page, easily search for cached version of it
<strong>Languages</strong>
✔ <b>Converter</b> - Contextual unit, timezone, and currency converter on any web site
✔ <b>Dictionary Switcher</b> - Switch between installed dictionaries and the current one in the statusbar
✔ <b>FoxLingo</b> - Web page and text translator, dictionary, grammar checker, text-to-speech, etc.
✔ <b>Quick Locale Switcher</b> - Switch Firefox default language
<strong>Media</strong>
✔ <b>Bargain Book Mole</b> - Find the best book prices from 20,000+ merchants on the top book selling sites
✔ <b>Cooliris</b> - Scroll an infinite 3D Wall of content from Facebook, Google, YouTube, Flickr, etc.
✔ <b>ImageZoom</b> - Adds zoom and rotation functionality for images
✔ <b><a href="http://outgoing.mozilla.org/v1/5fca7fd82b7188d804f46a87105fe21ce16ba5de/http%3A//Fire.fm" rel="nofollow">Fire.fm</a></b> - <a href="http://outgoing.mozilla.org/v1/5fca7fd82b7188d804f46a87105fe21ce16ba5de/http%3A//Fire.fm" rel="nofollow">Fire.fm</a> gives you access to the extensive music library on <a href="http://outgoing.mozilla.org/v1/5718aab3f1f2c4c1ada4f9ceaf8188ab81429e2e/http%3A//Last.fm" rel="nofollow">Last.fm</a>
✔ <b>FireShot</b> - Creates screenshots of web pages with editing and annotation tools
✔ <b>Flash Game Maximizer</b> - Click a button or hit the hot-key to maximize (almost) any Flash content
✔ <b>FlashVideoReplacer</b> - Replace embedded flash videos with mplayer compatible videos
✔ <b>FoxyTunes</b> - Control almost any media player and find lyrics, covers, videos, bios, etc.
✔ <b>MediaPlayerConnectivity</b> - Launch online videos in an external application
✔ <b>Picnik</b> - Add a menu options and a toolbar icon for editing images online
✔ <b>Screengrab</b> - Save webpages as images (saves an entire page, just a selection, or a frame)
✔ <b>TinEye Reverse Image Search</b> - Find where an image came from and if it has a better version
✔ <b>TweakMDB</b> - The Ultimate IMDB Enhancer, instantly add many tweaks to <a href="http://outgoing.mozilla.org/v1/ae16ac2dce30d145217b2511f8b96fb4cd1f3f1c/http%3A//IMDB.com" rel="nofollow">IMDB.com</a>
✔ <b>TweakTube</b> - The Ultimate YouTube Enhancer, instantly add many tweaks to YouTube
✔ <b>VideoSurf</b> - Get visual video summaries and related videos on Twitter, Google, YouTube, etc.
<strong>Programming</strong>
✔ <b>Addon Developer Helper</b> - Restart Firefox, restart and clear XPCOM cache, or restart chrome
✔ <b>Console2</b> - Improves the JavaScript console with filtering, removing duplicates, and more
✔ <b>Extended Statusbar</b> - A Statusbar with speed, percentage, time and loaded size
✔ <b>Firebug</b> - Edit, debug, and monitor CSS, HTML, and JavaScript live in any web page
✔ <b>FireFTP</b> - FTP client
✔ <b>FoxyProxy</b> - An advanced proxy management tool
✔ <b>HttpFox</b> - HTTP analyzer
✔ <b>IE Tab</b> - View sites in Internet Explorer within a Firefox tab
✔ <b>Nightly Tester Tools</b> - Use addons that don't support the newest Firefox version
✔ <b>Pixel Perfect</b> - Overlay a webpage image on top of an actual webpage (requires Firebug)
✔ <b>SQLite Manager</b> - Manage any SQLite database on your computer
✔ <b>Web Developer</b> - Adds a menu and a toolbar with various web developer tools
✔ <b>YSlow</b> - Analyzes web pages and why they're slow based on Yahoo!'s rules
<strong>Security &amp; Privacy</strong>
✔ <b>Adblock Plus</b> - Blocks ads automatically on any web page
✔ <b>BetterPrivacy</b> - A safeguard which protects from LSO's on Google, YouTube, Ebay, etc.
✔ <b>BlockSite</b> - BlockSite is an extension, which automagically blocks websites of your choice
✔ <b>BrowserProtect</b> - Protect your browser against homepage and search hijacks
✔ <b>Flashblock</b> - Blocks Flash from automatically playing
✔ <b>Ghostery</b> - Protect your privacy, see who's tracking your web browsing and block them
✔ <b>LastPass Password Manager</b> - Online password manager and form filler
✔ <b>LinkExtend</b> - Provides meta-site-ratings for computer safety, child safety, popularity, etc.
✔ <b>NoScript</b> - Allow active content (like Javascript) to run only from sites you trust
✔ <b>Password Exporter</b> - Export your saved passwords to XML or CSV files that can be imported
✔ <b>ProCon</b> - Filter web pages containing explicit content based on text on websites
✔ <b>Show My Password</b> - Shows your passwords in readable letters
✔ <b>Tamper Data</b> - Use tamperdata to view and modify HTTP/HTTPS headers and post parameters
<strong>Social</strong>
✔ <b>AddThis</b> - Share any page using social networking, bookmarking, blogging, and e-mail services
✔ <b>Better Gmail</b> - Extra features for Gmail including hierarchical labels, attachment icons, and more
✔ <b><a href="http://outgoing.mozilla.org/v1/ed13067f53cf3e6ff0a46dd3ddb1ba3a7e0df261/http%3A//Boo.ly" rel="nofollow">Boo.ly</a></b> - Adds coupons, money saving deals, and price comparison to search results
✔ <b>ChatZilla</b> - A clean, easy to use and highly extensible Internet Relay Chat (IRC) client
✔ <b>Integrated Gmail</b> - Combines Gmail with Google Calendar, Google Reader, Gmail Labs, and more
✔ <b>Facebook Like</b> - Share web pages you like and see how many people like the page you are on
✔ <b>Tweetbeat Firsthand</b> - Brings in recent tweets from people and groups mentioned in the page you're on
✔ <b>TwitterBar</b> - Post to Twitter from your address bar
✔ <b>WebMail Notifier</b> - Checks your webmail accounts and notifies the number of unread emails
<strong>Visual</strong>
✔ <b>ColorfulTabs</b> - Colors every tab in a different color and makes them easy to distinguish
✔ <b>Fission</b> - Combines address bar and progress bar (Safari style)
✔ <b>FoxTab</b> - Flip between open tabs with a 3D display
✔ <b>Hide Caption Titlebar Plus</b> - Maximize screen space by removing the Firefox window title-bar
✔ <b>NoSquint</b> - Change zoom levels and color settings for all sites or per site
✔ <b>Personas Plus</b> - Skins for Firefox (over 60,000 designs)
✔ <b>Readability</b> - Makes reading on the Web better by removing clutter around what you're reading
✔ <b>Searchbar Autosizer</b> - Autosizes the searchbar as you type
✔ <b>Smart Bookmarks Bar</b> - Hide bookmark names from the bookmark bar
✔ <b>Smart Stop/Reload</b> - Combines the Stop and Reload toolbar buttons
✔ <b>SmoothWheel</b> - Scrolls the page smoothly when scrolling the mouse wheel
✔ <b>Stylish</b> - Install user generated themes and skins for any website
✔ <b>Tab Progress Bar</b> - Provides a progress meter for each tab</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/188421-32.png?modified=1301355369</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>1.5</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46942.png?src=api&modified=1277888860
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46942.png?src=api&modified=1277888860
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46943.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46943.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46944.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46944.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46945.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46945.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46946.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46946.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46947.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46947.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46948.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46948.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46949.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46949.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46950.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46950.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46951.png?src=api&modified=1277859847
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46951.png?src=api&modified=1277859847
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46952.png?src=api&modified=1277859848
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46952.png?src=api&modified=1277859848
</thumbnail></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46953.png?src=api&modified=1277859848
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46953.png?src=api&modified=1277859848
</thumbnail></preview></previews><rating>5</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/addonfox-best-firefox-addons/?src=api</learnmore><install hash="sha256:1c675167f6b0b258b06e319b7bf3718608534a5838786b840a5fa7ab17fd30db" os="ALL" size="286720">https://addons.allizom.org/firefox/downloads/file/114849/addonfox_best_firefox_addons-1.1.7-fx.xpi?src=api</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/addonfox-best-firefox-addons/contribute/?src=api</link>
<suggested_amount currency="USD" amount="5.00">
$5.00
</suggested_amount>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/addonfox-best-firefox-addons/developers?src=api
</meet_developers>
</contribution_data><developer_comments>☛ Donate using <a href="http://outgoing.mozilla.org/v1/e4bd8acfa1efda792ad5bf404216a5cb74bf0b56/http%3A//www.addonfox.com/donate/%3Fsrc%3Dmozilla">Paypal or Credit Card</a>
</developer_comments>
<reviews num="12">
https://addons.allizom.org/en-us/firefox/addon/addonfox-best-firefox-addons/reviews/?src=api
</reviews>
<total_downloads>733691</total_downloads>
<weekly_downloads>75751</weekly_downloads>
<daily_users>32072</daily_users>
<created epoch="1277858296">
2010-06-30T00:38:16Z
</created>
<last_updated epoch="1301355252">
2011-03-28T23:34:12Z
</last_updated>
<homepage>http://www.addonfox.com/</homepage>
<support>http://www.addonfox.com/contact/</support></addon>
<addon id="3863">
<name>iMacros for Firefox</name>
<type id="1">Extension</type>
<guid>{81BF1D23-5F17-408D-AC6B-BD6DF7CAF670}</guid>
<version>7.1.1.2</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="69982">
<name>iOpus</name>
<link>https://addons.allizom.org/en-us/firefox/user/69982/?src=api</link>
</author> </authors>
<summary>Automate Firefox. Record and replay repetitious work. If you love the Firefox web browser, but are tired of repetitive tasks like visiting the same sites every days, filling out forms, and remembering passwords, then iMacros for Firefox is the solution you’ve been dreaming of! ***Whatever you do with Firefox, iMacros can automate it.***</summary>
<description>iMacros was designed to automate the most repetitious tasks on the web. If there’s an activity you have to do repeatedly, just record it in iMacros. The next time you need to do it, the entire macro will run at the click of a button! With iMacros, you can quickly and easily fill out web forms, remember passwords, create a webmail notifier, download information from other sites, scrape the Web (get data from multiple sites), and more. You can keep the macros on your computer for your own use, or share them with others by embedding them on your homepage, blog, company Intranet or any social bookmarking service. The uses are limited only by your imagination!
Here are just a few examples of how you can use iMacros to automate your web browser.
(1) Form Filler &amp; Password Manager
With iMacros for Firefox, you no longer need to check the same sites every day, remembering passwords, and filling out web forms. iMacros is the only form filler that can autofill web forms that stretch over several pages. All information is stored in human-readable, plain text files that can be easily edited. Passwords are stored securely with 256-Bit AES encryption. Users memorize only one master password and iMacros remembers all the others, providing a truly automated login experience, that beats the Solution to Enterprise Single Sign-On (SSO).
(2) Automated Download &amp; Upload
iMacros can automate the download of images, files, or entire pages (with or without images). In the other direction, it can automate the upload of data to websites. You can use variables inside the macros and import data from CSV files. iMacros includes a user agent switcher, PDF download and Flash, and ad- and image-blocking functions. When combined and controlled with Javascript, the recorded Macros can script even very complex tasks.
(3) Data Extraction, Web Scraping/Mining &amp; Enterprise Data Mash-Ups
The iMacros EXTRACT command automatically reads data from a website and exports it to CSV files – the exact opposite of filling out forms. iMacros includes full Unicode support and works with every language, including multi-byte languages such as Chinese. You can use this feature to download stock quotes, gather and compare web store prices, and more.
(4) Web Testing
Web professionals can use iMacros for functional, performance, and regression testing of web applications. The built-in STOPWATCH command captures precise web page response times. iMacros also includes support for many AJAX elements.
(5) Social Scripting (Social Bookmarking)
Sharing your favorite iMacros with friends and colleagues is easy. Simply right-click the macro to add it as a bookmark, or select "Run Everywhere" and embed the complete macro in a simple link. You can send the link to others, or embed it on your homepage, blog, or company intranet. Instead of telling your site visitors how to fill out a form, let iMacros do it for them. All the information is stored inside the link as a text string, with nothing stored on our servers, which is why iMacros work on intranets, too. See an example at del.icio.us/imacros/imacro.
(6) Other Uses
For more ideas on how to use iMacros, please visit www.iopus.com/imacros/firefox and/or our active support forum at forum.iopus.com.
iMacros is extremely versatile and can be combined with other extensions such as Greasemonkey, Web Developer, Firebug, Stylish, Download Statusbar, NoScript, PDF Download, Foxmarks, Fasterfox, All-in-One Sidebar, Megaupload, Foxyproxy, Flashblock and Adblock.
iMacros for Firefox is free for personal and commercial use. Download the add-on today to start simplifying your Web tasks and sharing your macros with others!
Whatever you do with Firefox, iMacros can automate it.</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/3863-32.png?modified=1299446793</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>3.0</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/10/10472.png?src=api&modified=0
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/10/10472.png?src=api&modified=0
</thumbnail><caption>iMacros for Firefox</caption></preview><preview position="1">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/10/10446.png?src=api&modified=0
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/10/10446.png?src=api&modified=0
</thumbnail><caption>iMacros Sidebar (Press F8 to show or hide it)</caption></preview><preview position="1">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/10/10654.png?src=api&modified=0
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/10/10654.png?src=api&modified=0
</thumbnail><caption>Right-click to delete or rename the Internet macros</caption></preview><preview position="1">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/10/10712.png?src=api&modified=0
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/10/10712.png?src=api&modified=0
</thumbnail><caption>All activity is recorded in human-readable, html-like commands with full Unicode support.</caption></preview><preview position="1">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/10/10989.png?src=api&modified=1225836919
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/10/10989.png?src=api&modified=1225836919
</thumbnail><caption>For maximum security, iMacros uses the Firefox Password Manager and stores passwords with 256-bit AES encryption.</caption></preview><preview position="1">
<full type="image/jpeg">
https://addons-cdn.allizom.org/img/uploads/previews/full/14/14818.png?src=api&modified=1225836971
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/14/14818.png?src=api&modified=1225836971
</thumbnail><caption>Add a reference to iMacros to your bookmarks or create a link with a "built-in" macro. You can email this link to your friends or colleagues and they can run the macro by just clicking on the link.</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/27/27139.png?src=api&modified=1225836784
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/27/27139.png?src=api&modified=1225836784
</thumbnail><caption>iMacros on the Mac</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/27/27140.png?src=api&modified=1225837396
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/27/27140.png?src=api&modified=1225837396
</thumbnail><caption>Use iMacros as super bookmarks, and automate not only the login but the complete task (login, saving reports, uploading files,...).</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/40/40297.png?src=api&modified=1262391967
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/40/40297.png?src=api&modified=1262391967
</thumbnail><caption>iMacros Reviews</caption></preview></previews><rating>5</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/imacros-for-firefox/?src=api</learnmore><install hash="sha256:18863382a61a0011b1ee3f516295fae66917848d32d579385ca7151aa2a2ad12" os="ALL" size="420864">https://addons.allizom.org/firefox/downloads/file/110413/imacros_for_firefox-7.1.1.2-fx.xpi?src=api</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/imacros-for-firefox/contribute/?src=api</link>
<suggested_amount currency="USD" amount="19.99">
$19.99
</suggested_amount>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/imacros-for-firefox/developers?src=api
</meet_developers>
</contribution_data><developer_comments>--------------------------------
FIND A BUG OR NEED HELP? Please post your feedback at <a href="http://outgoing.mozilla.org/v1/e1c3080982d1c5367f19f2affb534d9ca209215c/http%3A//forum.iopus.com/viewforum.php%3Ff%3D11">http://forum.iopus.com/viewforum.php?f=11</a> so we can help you, rather than reporting it here.
--------------------------------</developer_comments>
<reviews num="263">
https://addons.allizom.org/en-us/firefox/addon/imacros-for-firefox/reviews/?src=api
</reviews>
<total_downloads>6739957</total_downloads>
<weekly_downloads>38665</weekly_downloads>
<daily_users>292973</daily_users>
<created epoch="1163419517">
2006-11-13T12:05:17Z
</created>
<last_updated epoch="1297280610">
2011-02-09T19:43:30Z
</last_updated>
<homepage>http://www.iopus.com/imacros/firefox/?ref=fxmoz</homepage>
<support>http://forum.iopus.com/viewforum.php?f=11</support></addon>
<addon id="122">
<name>Walnut for Firefox</name>
<type id="2">Theme</type>
<guid>{5A170DD3-63CA-4c58-93B7-DE9FF536C2FF}</guid>
<version>1.8.71</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="66">
<name>alfredkayser</name>
<link>https://addons.allizom.org/en-us/firefox/user/66/?src=api</link>
</author> </authors>
<summary>Walnut for a wooden look and feel. Walnut is a complete skin redesign so that all windows, widgets, panels, and even the addons have a wooden look and feel. Supports many extensions. For Firefox 2.0, and 3.0, 3.5, 3.6 and 3.7 nightlies. </summary>
<description>Walnut is based on icons from art.gnome.org. Includes support for DOMInspector, chatzilla, stumbleupon, downloadstatusbar, fission, forecastfox, downloadmgr, calendar, quicknote, offline, googlebar, MAB, and many more...
I you like this theme, you can use the 'Donate' button on my homepage to show your appreciation!
To uninstall first make the default theme active (or the theme you want to remove) and then do 'uninstall' from the theme manager.
Please don't use the 'review' to report download errors. Download issues are not caused by the theme, but by one of the many AMO download mirrors.
Please don't use the review box for any bug reports. Contact me through the email address provided under the 'Support' heading. Using email is the quickest way to notify me, and generally I will try to make a fix available as quickly as possible.
</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/122-32.png?modified=1299511145</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>2.0</min_version>
<max_version>4.2a1pre</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/0/116.png?src=api&modified=1225206057
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/0/116.png?src=api&modified=1225206057
</thumbnail><caption>Thumbnail</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/18/18757.png?src=api&modified=1211721636
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/18/18757.png?src=api&modified=1211721636
</thumbnail><caption>Download Manager</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/18/18758.png?src=api&modified=1211721662
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/18/18758.png?src=api&modified=1211721662
</thumbnail><caption>Add/Edit Bookmark Panel</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/18/18762.png?src=api&modified=1203930846
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/18/18762.png?src=api&modified=1203930846
</thumbnail><caption>Identity Panel</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/46/46789.png?src=api&modified=1277326942
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/46/46789.png?src=api&modified=1277326942
</thumbnail><caption>Preview of Firefox 4 functionality, in FF3.7 nightly (23 June 2010): AppMenu, TabsOnTop, Addons Manager, Heads Up Console, and Doorhanger notification</caption></preview></previews><rating>4</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/walnut-for-firefox/?src=api</learnmore><install hash="sha256:3144906f4f9683afdae6763411b6ff13cd12e8e47b165881e94f65f021be3566" os="ALL" size="761856">https://addons.allizom.org/firefox/downloads/file/113370/walnut_for_firefox-1.8.71-fx.jar?src=api</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/walnut-for-firefox/contribute/?src=api</link>
<suggested_amount currency="USD" amount="4.99">
$4.99
</suggested_amount>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/walnut-for-firefox/developers?src=api
</meet_developers>
</contribution_data><developer_comments>To uninstall: first select Walnut as the current theme in the Theme/Addons manager, restart firefox, then uninstall and then restart Firefox.
Please don't use the review box for any bug reports. Contact me through the email address provided under the 'Support' heading. Using email is the quickest way to notify me, and generally I will try to make a fix available as quickly as possible.
Note, as the AMO approval process takes ages, it may be that there is a newer version available as 'experimental' than the one currently displayed. Go to 'View All Versions' (at bottom of this page), and check if there is a newer (experimental) version available there.
<strong>November 24, 2010: 1.8.67 posted for support upto Firefox 4.0 Beta 8 pre.
Check 'View all versions' at bottom of page.</strong>
Greetings, Alfred</developer_comments>
<reviews num="167">
https://addons.allizom.org/en-us/firefox/addon/walnut-for-firefox/reviews/?src=api
</reviews>
<total_downloads>4532745</total_downloads>
<weekly_downloads>37817</weekly_downloads>
<daily_users>176260</daily_users>
<created epoch="1088170621">
2004-06-25T13:37:01Z
</created>
<last_updated epoch="1299511093">
2011-03-07T15:18:13Z
</last_updated>
<homepage>https://addons.mozilla.org/en-US/seamonkey/addon/122/developers</homepage>
<support>https://addons.mozilla.org/en-US/seamonkey/addon/122/developers</support></addon>
<addon id="6683">
<name>Firecookie</name>
<type id="1">Extension</type>
<guid>[email protected]</guid>
<version>1.2.1</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="857086">
<name>Jan Odvarko</name>
<link>https://addons.allizom.org/en-us/firefox/user/857086/?src=api</link>
</author> </authors>
<summary>Firecookie is an extension for Firebug that makes possible to view and manage cookies in your browser</summary>
<description>Cookie manager for Firebug. Firebug has to be installed in order to use this extension. Use this extension to create a new cookie, delete existing cookies, see list of cookies for current site, manage cookies permissions and a lot more. Use <a href="http://outgoing.mozilla.org/v1/2f9f3a29e0cc511595b4165f6909a88463ca3bb7/http%3A//code.google.com/p/firecookie/issues/list">http://code.google.com/p/firecookie/issues/list</a> to report any issue.
</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/6683-32.png?modified=1299599713</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>3.0</min_version>
<max_version>4.0.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/18/18996.png?src=api&modified=1204922539
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/18/18996.png?src=api&modified=1204922539
</thumbnail><caption>List of cookies is displayed within Firebug's UI.</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/18/18997.png?src=api&modified=1204922922
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/18/18997.png?src=api&modified=1204922922
</thumbnail><caption>There is a new tab for Cookies within Firebug's UI.</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/18/18998.png?src=api&modified=1204922615
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/18/18998.png?src=api&modified=1204922615
</thumbnail><caption>Events are displayed in Firebug's Console tab.</caption></preview><preview position="1">
<full type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/full/19/19004.png?src=api&modified=1204923534
</full>
<thumbnail type="image/png">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/19/19004.png?src=api&modified=1204923534
</thumbnail><caption>Clipboard is also supported.</caption></preview></previews><rating>4</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/firecookie/?src=api</learnmore><install hash="sha256:db7abccd79b55c0b8bd512b9b921d9e19db3483285fe1728c973262df91310b1" os="ALL" size="134144">https://addons.allizom.org/firefox/downloads/file/113498/firecookie-1.2.1-fx.xpi?src=api</install>
<contribution_data>
<link>https://addons.allizom.org/en-us/firefox/addon/firecookie/contribute/?src=api</link>
<suggested_amount currency="USD" amount="3.00">
$3.00
</suggested_amount>
<meet_developers>
https://addons.allizom.org/en-us/firefox/addon/firecookie/developers?src=api
</meet_developers>
</contribution_data><developer_comments/>
<reviews num="44">
https://addons.allizom.org/en-us/firefox/addon/firecookie/reviews/?src=api
</reviews>
<total_downloads>940210</total_downloads>
<weekly_downloads>29358</weekly_downloads>
<daily_users>81075</daily_users>
<created epoch="1204921427">
2008-03-07T20:23:47Z
</created>
<last_updated epoch="1299599646">
2011-03-08T15:54:06Z
</last_updated>
<homepage>http://www.janodvarko.cz/firecookie</homepage>
<support>http://www.janodvarko.cz/firecookie</support></addon>
<addon id="161670">
<name>FlashFirebug</name>
<type id="1">Extension</type>
<guid>[email protected]</guid>
<version>2.0</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="5317052">
<name>O-Minds</name>
<link>https://addons.allizom.org/en-us/firefox/user/5317052/?src=api</link>
</author> </authors>
<summary>Debug ANY AS3 SWF files on the web. Edit properties and inspect elements like you do to HTML. Redirect errors, warnings traces to the extension. This extension requires Firebug extension and Flash Player Debugger.</summary>
<description>This extension supports Action Script 3 (AS3). This extension requires Firebug and the Flash Player Debugger installed. You can find out more details on the product website at:
<a href="http://outgoing.mozilla.org/v1/0520f9aaddadc28cb0de81829f8dfb6c1d993f90/http%3A//www.o-minds.com/products/flashfirebug" rel="nofollow">http://www.o-minds.com/products/flashfirebug</a>
Follow us on twitter for FlashFirebug <a href="http://outgoing.mozilla.org/v1/b0d564dfb2fdd48d2e8b933a06385dfecd0f541e/http%3A//twitter.com/ominds" rel="nofollow">updates</a>
Please consider <a href="http://outgoing.mozilla.org/v1/dc9ddfb475ec77402d5d6e4220f58111e302080e/http%3A//www.o-minds.com/node/50%3Fsource=flashfirebug" rel="nofollow">donating</a> to further the development of this extension. Sponsorship is also an option, <a href="http://outgoing.mozilla.org/v1/d7bcb5734ee3fd44cc96c44f9dabc9d04e2dc445/http%3A//www.o-minds.com/contact" rel="nofollow">contact O-Minds</a> if you're interested in sponsoring this module.</description>
<icon>https://addons-cdn.allizom.org/en-US/firefox/images/addon_icon/161670-32.png?modified=1297707694</icon>
<compatible_applications><application>
<name>Firefox</name>
<application_id>1</application_id>
<min_version>3.5</min_version>
<max_version>3.6.*</max_version>
<appID>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</appID>
</application></compatible_applications>
<all_compatible_os><os>ALL</os></all_compatible_os>
<eula/><previews><preview position="0">
<full type="">
https://addons-cdn.allizom.org/img/uploads/previews/full/54/54017.png?src=api&modified=1297707695
</full>
<thumbnail type="">
https://addons-cdn.allizom.org/img/uploads/previews/thumbs/54/54017.png?src=api&modified=1297707695
</thumbnail><caption>FlashFirebug debugging a youtube video.</caption></preview></previews><rating>4</rating>
<learnmore>https://addons.allizom.org/en-us/firefox/addon/flashfirebug/?src=api</learnmore><install hash="sha256:1fc9aaa3a2fea1685266fb7820da09ce132ebc40ac89f8e4f9a0ba585e2edd6b" os="ALL" size="223232">https://addons.allizom.org/firefox/downloads/file/111064/flashfirebug-2.0-fx.xpi?src=api</install>
<developer_comments/>
<reviews num="10">
https://addons.allizom.org/en-us/firefox/addon/flashfirebug/reviews/?src=api
</reviews>
<total_downloads>268215</total_downloads>
<weekly_downloads>24035</weekly_downloads>
<daily_users>15019</daily_users>
<created epoch="1273367099">
2010-05-09T01:04:59Z
</created>
<last_updated epoch="1297705243">
2011-02-14T17:40:43Z
</last_updated>
<homepage>http://www.o-minds.com/products/flashfirebug</homepage>
<support>http://www.o-minds.com/products/flashfirebug</support></addon>
<addon id="290015">
<name>Firefox 3 theme for Firefox 4</name>
<type id="2">Theme</type>
<guid>[email protected]</guid>
<version>1.0.0</version>
<status id="4">Fully Reviewed</status>
<authors>
<author id="64483">
<name>Jeremy Morton</name>
<link>https://addons.allizom.org/en-us/firefox/user/64483/?src=api</link>