Welcome to mirror list, hosted at ThFree Co, Russian Federation.

v2.0_plugins.json « resources « tests « Marketplace « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbd6d9ef1407f7b2f3d383819b6bf91849ca4392 (plain)
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
{"plugins":[{"name":"AdminNotification",
  "displayName":"Admin Notification",
  "owner":"jbrule",
  "description":"Adds the ability for Piwik administrators to include an informative message to all user's dashboards. This uses the built in Notification function.",
  "homepage":"https:\/\/github.com\/jbrule\/piwikplugin-AdminNotification",
  "createdDateTime":"2015-04-13 17:52:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/jbrule\/piwikplugin-AdminNotification",
  "lastUpdated":"2015-11-20 19:16:03",
  "latestVersion":"0.1.2",
  "numDownloads":2618,"screenshots":[],"previews":[],"activity":{"numCommits":"7",
    "numContributors":"1",
    "lastCommitDate":"2015-11-20 19:14:09"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-04-13 17:52:03",
    "requires":{"piwik":">=2.8.0"},"readme":"",
    "numDownloads":3,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/jbrule\/piwikplugin-AdminNotification\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdminNotification\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-04-13 18:20:03",
    "requires":{"piwik":">=2.8.0"},"readme":"",
    "numDownloads":1302,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/jbrule\/piwikplugin-AdminNotification\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdminNotification\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2015-11-20 19:16:03",
    "requires":{"piwik":">=2.12.0"},"readme":"#Piwik AdminNotification Plugin\n##Description\nAdds the ability for Piwik administrators to include an informative message on all users' dashboards. This may be useful for communicating with users in larger shared environments. In our setup we were tracking 1,900 websites with 250 users. This is a solution we wrote to allow us to easily inform our users of maintainance windows.\n\n##Instructions\nThe easiest way to install is to find the plugin in the [Piwik Marketplace](http:\/\/plugins.piwik.org\/).\n\n##Changelog\n0.1.2 Tested with Piwik v2.15 and included new registerEvents() hook for compatibility with Piwik 3.0\n0.1.1 Cleanup. Removed plugin template verbiage from code files.\n0.1.0 Initial Release\n\n##License\nGPL v3 \/ fair use\n\n## Support\nPlease [report any issues](https:\/\/github.com\/jbrule\/piwikplugin-AdminNotification\/issues). Pull requests welcome.",
    "numDownloads":1313,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/jbrule\/piwikplugin-AdminNotification\/commits\/v1.0",
    "readmeHtml":{"description":"\n\n<p>Adds the ability for Piwik administrators to include an informative message on all users' dashboards. This may be useful for communicating with users in larger shared environments. In our setup we were tracking 1,900 websites with 250 users. This is a solution we wrote to allow us to easily inform our users of maintainance windows.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<p>0.1.2 Tested with Piwik v2.15 and included new registerEvents() hook for compatibility with Piwik 3.0\n0.1.1 Cleanup. Removed plugin template verbiage from code files.\n0.1.0 Initial Release<\/p>"},"download":"\/api\/2.0\/plugins\/AdminNotification\/download\/0.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"AdvancedCampaignReporting",
  "displayName":"Advanced Campaign Reporting",
  "owner":"PiwikPRO",
  "description":"Track up to five Campaigns parameter (campaign, source, medium, keyword, content). Lets you also segment users by any campaign dimension, and provides",
  "homepage":"http:\/\/piwik.pro",
  "createdDateTime":"2014-10-01 03:22:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting",
  "lastUpdated":"2016-03-22 12:36:04",
  "latestVersion":"1.3.1",
  "numDownloads":8360,"screenshots":[],"previews":[],"activity":{"numCommits":"149",
    "numContributors":"9",
    "lastCommitDate":"2016-04-15 22:57:32"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.3",
    "release":"2014-10-01 03:22:04",
    "requires":{},"readme":"",
    "numDownloads":496,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.0.3"},{"name":"1.0.4",
    "release":"2014-11-03 15:08:04",
    "requires":{},"readme":"",
    "numDownloads":213,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.0.4"},{"name":"1.0.5",
    "release":"2014-11-14 11:16:04",
    "requires":{},"readme":"",
    "numDownloads":109,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.0.5"},{"name":"1.0.6",
    "release":"2014-11-17 04:44:03",
    "requires":{},"readme":"",
    "numDownloads":1531,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.0.6"},{"name":"1.0.7",
    "release":"2015-03-31 20:50:04",
    "requires":{},"readme":"",
    "numDownloads":9,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.0.7"},{"name":"1.0.8",
    "release":"2015-03-31 21:20:04",
    "requires":{},"readme":"",
    "numDownloads":1853,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.0.8"},{"name":"1.1.1",
    "release":"2015-09-03 02:04:03",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":954,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.1.1"},{"name":"1.2.0",
    "release":"2015-11-11 13:08:02",
    "requires":{"piwik":">=2.15.0"},"readme":"",
    "numDownloads":1743,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/2.0.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.2.0"},{"name":"1.3.0",
    "release":"2016-03-08 14:02:03",
    "requires":{"piwik":">=2.16.0"},"readme":"",
    "numDownloads":352,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.3.0"},{"name":"1.3.1",
    "release":"2016-03-22 12:36:04",
    "requires":{"piwik":">=2.16.0"},"readme":"# Advanced Campaigns Reporting\n\nMaster [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-AdvancedCampaignReporting.svg?branch=master)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-AdvancedCampaignReporting)\nDevelop [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-AdvancedCampaignReporting.svg?branch=develop)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-AdvancedCampaignReporting)\n\n## Description\n\nTrack up to five Campaigns parameters (name, source, medium, keyword, content), and access Campaign Analytics reports.\n\n### Measuring campaigns\n\nThe default Campaign parameters are called: pk_campaign, pk_source, pk_medium, pk_keyword, pk_content and pk_cid.\n\nIf you already have URLs tagged with Google Analytics parameters these are supported: utm_campaign, utm_source, utm_medium, utm_term, utm_content and utm_id\n\nAn example landing page URL is:\n```\n\/offer?pk_campaign=Best-Seller&pk_source=Newsletter_7&pk_medium=email\n```\n\n### Features\n * Real time Analytics Reports of all your Campaign Marketing\n * Detects Campaign parameters from the landing page URL, within the query string or in the #hash string\n * The Referrers>Overview report displays a left column \"Referrers Overview\" with a list of reports that can be loaded on click.\n   This report viewer now also lists the new Campaign reports under \"View Referrers by Campaign\".\n * The content of Referrers> Campaign will be replaced with the new enhanced Campaigns reports.\n * The default Referrers Campaign widget and API are working as before.\n * The campaign reports are available in Piwik Mobile and can be sent as Scheduled reports (by email, as HTML or PDF)\n * Segment editor: a new \"Campaigns\" category lists the five new segment for each campaign dimension\n * The new Campaign reports can be added as widgets in your personalized Dashboard\n * Access the Campaign Report data by the API\n * Comes with automated tests to ensure the Plugin works as expected\n * Will track up to 250 characters for each of the five Campaign dimension\n\n### Notes\n\nIn the Campaign reports by default Piwik will only archive the first 1000 rows. If you track many campaigns you can configure Piwik so it does not truncate your data. To have data truncated after 10,000 rows, edit your `config\/config.ini.php` and add the following:\n\n```\n[General]\ndatatable_archiving_maximum_rows_referrers = 10000\ndatatable_archiving_maximum_rows_subtable_referrers = 10000\n```\n\n\n### Ideas for improvement\n * To improve data acquisition accuracy, we could extend the piwik.js class to store in first party cookies\n the five campaign dimensions. This would increase the accuracy of Goal conversions and Ecommerce conversions attributions\n for these conversions made at least one day after the first visit with a campaign set. [#10](https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/issues\/10)\n * Add friendly Tracking API parameters to collect campaign dimensions.\n campaignName `cn`, campaignSource `cs`, campaignMedium `cm`, campaignContent `cc`, campaignId `ci`.\n\n## Changelog\n * 1.3.1 Better support for campaign parameters behind hash tag (#)\n * 1.3.0 PPCDEV-2609 Compatibility with Piwik 2.16.0\n * 1.2.0 (Nov 10th 2015) - Plugin comaptibility with Piwik 2.15.0\n * 1.1.1 (Sept 3rd 2015) - Campaign reports now display your campaign report data even for campaign data before you activated AdvancedCampaignReporting\n * 1.1.0 (July 28th 2015)\n * 1.0.8 (Apr 1st 2015) - Exclude Google Analytics campaign parameters from the Page URLs\n * 1.0.6 (Nov 17th 2014) - Documentation\n * 1.0.5 (Nov 14th 2014) - Detect new URL parameters: piwik_campaign, pk_cpn and for Keywords: pk_kwd, piwik_keyword\n * 1.0.4 (Nov 4th 2014) - View Goals by Campaign Dimension in the Goals & Ecommerce reports\n * 1.0.3 (Oct 1st 2014) - Released for free on the [Piwik Marketplace](http:\/\/plugins.piwik.org\/)\n\n\n## Support\n\nPlugin provided by [Piwik PRO](https:\/\/example.por) - Cloud and Enterprise analytics from the creators of Piwik.org\n\nIf you find a bug or have a suggestion please create an issue in: https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/issues\n",
    "numDownloads":1100,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Track up to five Campaigns parameters (name, source, medium, keyword, content), and access Campaign Analytics reports.<\/p>\n\n<h3>Measuring campaigns<\/h3>\n\n<p>The default Campaign parameters are called: pk_campaign, pk_source, pk_medium, pk_keyword, pk_content and pk_cid.<\/p>\n\n<p>If you already have URLs tagged with Google Analytics parameters these are supported: utm_campaign, utm_source, utm_medium, utm_term, utm_content and utm_id<\/p>\n\n<p>An example landing page URL is:<\/p>\n\n<pre><code>\/offer?pk_campaign=Best-Seller&amp;pk_source=Newsletter_7&amp;pk_medium=email\n<\/code><\/pre>\n\n<h3>Features<\/h3>\n\n<ul><li>Real time Analytics Reports of all your Campaign Marketing<\/li>\n<li>Detects Campaign parameters from the landing page URL, within the query string or in the #hash string<\/li>\n<li>The Referrers&gt;Overview report displays a left column \"Referrers Overview\" with a list of reports that can be loaded on click.\nThis report viewer now also lists the new Campaign reports under \"View Referrers by Campaign\".<\/li>\n<li>The content of Referrers&gt; Campaign will be replaced with the new enhanced Campaigns reports.<\/li>\n<li>The default Referrers Campaign widget and API are working as before.<\/li>\n<li>The campaign reports are available in Piwik Mobile and can be sent as Scheduled reports (by email, as HTML or PDF)<\/li>\n<li>Segment editor: a new \"Campaigns\" category lists the five new segment for each campaign dimension<\/li>\n<li>The new Campaign reports can be added as widgets in your personalized Dashboard<\/li>\n<li>Access the Campaign Report data by the API<\/li>\n<li>Comes with automated tests to ensure the Plugin works as expected<\/li>\n<li>Will track up to 250 characters for each of the five Campaign dimension<\/li>\n<\/ul><h3>Notes<\/h3>\n\n<p>In the Campaign reports by default Piwik will only archive the first 1000 rows. If you track many campaigns you can configure Piwik so it does not truncate your data. To have data truncated after 10,000 rows, edit your <code>config\/config.ini.php<\/code> and add the following:<\/p>\n\n<pre><code>[General]\ndatatable_archiving_maximum_rows_referrers = 10000\ndatatable_archiving_maximum_rows_subtable_referrers = 10000\n<\/code><\/pre>\n\n<h3>Ideas for improvement<\/h3>\n\n<ul><li>To improve data acquisition accuracy, we could extend the piwik.js class to store in first party cookies\nthe five campaign dimensions. This would increase the accuracy of Goal conversions and Ecommerce conversions attributions\nfor these conversions made at least one day after the first visit with a campaign set. <a href=\"https:\/\/github.com\/PiwikPRO\/plugin-AdvancedCampaignReporting\/issues\/10\">#10<\/a><\/li>\n<li>Add friendly Tracking API parameters to collect campaign dimensions.\ncampaignName <code>cn<\/code>, campaignSource <code>cs<\/code>, campaignMedium <code>cm<\/code>, campaignContent <code>cc<\/code>, campaignId <code>ci<\/code>.<\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>1.3.1 Better support for campaign parameters behind hash tag (#)<\/li>\n<li>1.3.0 PPCDEV-2609 Compatibility with Piwik 2.16.0<\/li>\n<li>1.2.0 (Nov 10th 2015) - Plugin comaptibility with Piwik 2.15.0<\/li>\n<li>1.1.1 (Sept 3rd 2015) - Campaign reports now display your campaign report data even for campaign data before you activated AdvancedCampaignReporting<\/li>\n<li>1.1.0 (July 28th 2015)<\/li>\n<li>1.0.8 (Apr 1st 2015) - Exclude Google Analytics campaign parameters from the Page URLs<\/li>\n<li>1.0.6 (Nov 17th 2014) - Documentation<\/li>\n<li>1.0.5 (Nov 14th 2014) - Detect new URL parameters: piwik_campaign, pk_cpn and for Keywords: pk_kwd, piwik_keyword<\/li>\n<li>1.0.4 (Nov 4th 2014) - View Goals by Campaign Dimension in the Goals &amp; Ecommerce reports<\/li>\n<li>1.0.3 (Oct 1st 2014) - Released for free on the <a href=\"http:\/\/plugins.piwik.org\/\">Piwik Marketplace<\/a><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/AdvancedCampaignReporting\/download\/1.3.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"AnonymousPiwikUsageMeasurement",
  "displayName":"Anonymous Piwik Usage Measurement",
  "owner":"piwik",
  "description":"Help improve your Piwik experience by sending anonymized usage data to the creators of Piwik, to your own Piwik instance or to any other Piwik",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2015-10-19 14:04:02",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement",
  "lastUpdated":"2016-02-10 17:22:03",
  "latestVersion":"0.2.1",
  "numDownloads":1662,"screenshots":[],"previews":[],"activity":{"numCommits":"61",
    "numContributors":"5",
    "lastCommitDate":"2016-05-17 03:54:49"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.1",
    "release":"2015-10-19 14:04:03",
    "requires":{"piwik":">=2.15.0-b17"},"readme":"",
    "numDownloads":18,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/commits\/0.1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AnonymousPiwikUsageMeasurement\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2015-10-20 06:44:03",
    "requires":{"piwik":">=2.15.0-b17"},"readme":"",
    "numDownloads":3,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/commits\/0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AnonymousPiwikUsageMeasurement\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2015-10-20 10:14:03",
    "requires":{"piwik":">=2.15.0-rc1"},"readme":"",
    "numDownloads":15,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AnonymousPiwikUsageMeasurement\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2015-10-21 06:06:03",
    "requires":{"piwik":">=2.15.0-rc1"},"readme":"",
    "numDownloads":595,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AnonymousPiwikUsageMeasurement\/download\/0.1.4"},{"name":"0.2.0",
    "release":"2016-01-19 00:20:04",
    "requires":{"piwik":">=2.15.0"},"readme":"",
    "numDownloads":291,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/AnonymousPiwikUsageMeasurement\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2016-02-10 17:22:03",
    "requires":{"piwik":">=2.15.0"},"readme":"# Piwik AnonymousPiwikUsageMeasurement Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-AnonymousPiwikUsageMeasurement.svg?branch=master)](https:\/\/travis-ci.org\/piwik\/plugin-AnonymousPiwikUsageMeasurement)\n\n## Description\n\nHelp us to improve Piwik by sending anonymous usage data of your Piwik service to the creators of Piwik and\/or get usage data yourself.\n\nTrack usage of your Piwik service into up to three Piwiks:\n\n* [demo-anonymous.piwik.org](https:\/\/demo-anonymous.piwik.org) (enabled by default but can be disabled). The tracked data will be used to make Piwik better. Thank you for your help!\n* your own Piwik (can be configured optionally)\n* a custom Piwik (can be configured optionally)\n\n### What is Piwik doing to make sure the data is anonymized?\n\nWe are very careful in what we track and we make sure to anonymize data that could contain user data.\n\n* We overwrite the page title as the title could contain the name of the viewed website\n* We remove any referrer information\n* We replace URL paramaters with a predefined value apart from a few whitelisted ones to make sure no actual token_auth, CSRF token or user defined value will be tracked\n* On demo-anonymous.piwik.org 3 bytes of the IP are anonymised (eg when IP is 192.168.1.1 we track only 192.0.0.0). The original IP is not used to identify your location and provider information is not collected. \n* We do not just track any outlinks or downloads\n\n### When should I not install this plugin?\n\nIf you have developed a custom Piwik plugin that contains for example the name of your business in any of the following names we recommend to not install this plugin as it might be tracked:\n\n* name of a plugin\n* name of a controller action\n* name of a report\n* name of a widget\n* name of an API method\n\nPlugins that are installed via the Marketplace should not pose a problem as their names don't contain any user specific information such as the name of your business.\n\nWe track any information as efficient as possible to not slow down your Piwik. If you have already performance problems with your Piwik we recommend to not install this plugin though.\n\n### Which data is tracked?\n\nWhen the plugin is activated, the following data will be tracked:\n\n* The pages and reports that are viewed\n* The visitors' software and devices data like the used browser and the resolution\n* Some clicks or interactions with certain selectors or buttons. For example we track an event when a segment is selected but we do not track the actual segment.\n* In a daily task we track the following data:\n  * Piwik version\n  * PHP version\n  * Number of websites\n  * Number of users\n  * Number of segments\n  * How often which API method was called (only plugin name and method name but no parameters) and how long the API calls took on average.\n\n## FAQ\n\n__Are there any prerequisites?__\n\n* If sending usage data to Piwik is enabled, the Piwik installation must be connected to the internet\n* If tracking to a custom Piwik installation is enabled, your Piwik installation and your Piwik users must be able to connect to this instance\n* If tracking to a custom Piwik installation is enabled and your Piwik is served via HTTPS, the custom Piwik installation must be available via HTTPS as well\n\n__Why was this plugin created?__\n\nThis plugin was created to provide a simple way to measure how Piwik product itself is being used. The opt-in and anonymised usage tracking information will be used by the Piwik creators to build a better product and a great user experience.\n\n__Who has access to the tracked data at demo-anonymous.piwik.org?__\n\nThe data is public and therefore can be seen by anyone on [http:\/\/demo-anonymous.piwik.org](http:\/\/demo-anonymous.piwik.org).\n\nThis is to assure the tracked data is anonymous (transparency) and to showcase how Piwik can be used to track an application.\n\n## Changelog\n\n* 0.2.1 Track MySQL server version in a custom variable.\n* 0.2.0 Add possibility to enable\/disable anonymization and tracking user login as userID\n* 0.1.4 Fixed a bug that failed to track under HTTPS under circumstances\n* 0.1.3 Updated plugin description only\n* 0.1.2 Bugfixes\n* 0.1.1 Track average API executime time\n* 0.1.0 Initial release\n\n## Support\n\nPlease direct any feedback to [github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/issues](https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/issues)\n",
    "numDownloads":740,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-AnonymousPiwikUsageMeasurement\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Help us to improve Piwik by sending anonymous usage data of your Piwik service to the creators of Piwik and\/or get usage data yourself.<\/p>\n\n<p>Track usage of your Piwik service into up to three Piwiks:<\/p>\n\n<ul><li><a href=\"https:\/\/demo-anonymous.piwik.org\">demo-anonymous.piwik.org<\/a> (enabled by default but can be disabled). The tracked data will be used to make Piwik better. Thank you for your help!<\/li>\n<li>your own Piwik (can be configured optionally)<\/li>\n<li>a custom Piwik (can be configured optionally)<\/li>\n<\/ul><h3>What is Piwik doing to make sure the data is anonymized?<\/h3>\n\n<p>We are very careful in what we track and we make sure to anonymize data that could contain user data.<\/p>\n\n<ul><li>We overwrite the page title as the title could contain the name of the viewed website<\/li>\n<li>We remove any referrer information<\/li>\n<li>We replace URL paramaters with a predefined value apart from a few whitelisted ones to make sure no actual token_auth, CSRF token or user defined value will be tracked<\/li>\n<li>On demo-anonymous.piwik.org 3 bytes of the IP are anonymised (eg when IP is 192.168.1.1 we track only 192.0.0.0). The original IP is not used to identify your location and provider information is not collected. <\/li>\n<li>We do not just track any outlinks or downloads<\/li>\n<\/ul><h3>When should I not install this plugin?<\/h3>\n\n<p>If you have developed a custom Piwik plugin that contains for example the name of your business in any of the following names we recommend to not install this plugin as it might be tracked:<\/p>\n\n<ul><li>name of a plugin<\/li>\n<li>name of a controller action<\/li>\n<li>name of a report<\/li>\n<li>name of a widget<\/li>\n<li>name of an API method<\/li>\n<\/ul><p>Plugins that are installed via the Marketplace should not pose a problem as their names don't contain any user specific information such as the name of your business.<\/p>\n\n<p>We track any information as efficient as possible to not slow down your Piwik. If you have already performance problems with your Piwik we recommend to not install this plugin though.<\/p>\n\n<h3>Which data is tracked?<\/h3>\n\n<p>When the plugin is activated, the following data will be tracked:<\/p>\n\n<ul><li>The pages and reports that are viewed<\/li>\n<li>The visitors' software and devices data like the used browser and the resolution<\/li>\n<li>Some clicks or interactions with certain selectors or buttons. For example we track an event when a segment is selected but we do not track the actual segment.<\/li>\n<li>In a daily task we track the following data:\n\n<ul><li>Piwik version<\/li>\n<li>PHP version<\/li>\n<li>Number of websites<\/li>\n<li>Number of users<\/li>\n<li>Number of segments<\/li>\n<li>How often which API method was called (only plugin name and method name but no parameters) and how long the API calls took on average.<\/li>\n<\/ul><\/li>\n<\/ul>",
      "faq":"<p><strong>Are there any prerequisites?<\/strong><\/p>\n\n<ul><li>If sending usage data to Piwik is enabled, the Piwik installation must be connected to the internet<\/li>\n<li>If tracking to a custom Piwik installation is enabled, your Piwik installation and your Piwik users must be able to connect to this instance<\/li>\n<li>If tracking to a custom Piwik installation is enabled and your Piwik is served via HTTPS, the custom Piwik installation must be available via HTTPS as well<\/li>\n<\/ul><p><strong>Why was this plugin created?<\/strong><\/p>\n\n<p>This plugin was created to provide a simple way to measure how Piwik product itself is being used. The opt-in and anonymised usage tracking information will be used by the Piwik creators to build a better product and a great user experience.<\/p>\n\n<p><strong>Who has access to the tracked data at demo-anonymous.piwik.org?<\/strong><\/p>\n\n<p>The data is public and therefore can be seen by anyone on <a href=\"http:\/\/demo-anonymous.piwik.org\">http:\/\/demo-anonymous.piwik.org<\/a>.<\/p>\n\n<p>This is to assure the tracked data is anonymous (transparency) and to showcase how Piwik can be used to track an application.<\/p>",
      "documentation":"",
      "changelog":"<ul><li>0.2.1 Track MySQL server version in a custom variable.<\/li>\n<li>0.2.0 Add possibility to enable\/disable anonymization and tracking user login as userID<\/li>\n<li>0.1.4 Fixed a bug that failed to track under HTTPS under circumstances<\/li>\n<li>0.1.3 Updated plugin description only<\/li>\n<li>0.1.2 Bugfixes<\/li>\n<li>0.1.1 Track average API executime time<\/li>\n<li>0.1.0 Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/AnonymousPiwikUsageMeasurement\/download\/0.2.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ApiGetWithSitesInfo",
  "displayName":"Api Get With Sites Info",
  "owner":"piwik",
  "description":"Modifies the 'API.get' output to also list the website name and main website URL",
  "homepage":"http:\/\/github.com\/piwik\/piwik-ApiGetWithSitesInfo",
  "createdDateTime":"2014-12-09 03:50:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-ApiGetWithSitesInfo",
  "lastUpdated":"2014-12-11 21:06:04",
  "latestVersion":"0.1.2",
  "numDownloads":3009,"screenshots":[],"previews":[],"activity":{"numCommits":"24",
    "numContributors":"3",
    "lastCommitDate":"2016-01-25 22:14:51"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-12-09 03:50:03",
    "requires":{"piwik":">=2.9.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-ApiGetWithSitesInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ApiGetWithSitesInfo\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-12-09 03:58:03",
    "requires":{"piwik":">=2.9.0"},"readme":"",
    "numDownloads":45,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-ApiGetWithSitesInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ApiGetWithSitesInfo\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-12-11 21:06:04",
    "requires":{"piwik":">=2.9.0"},"readme":"# Piwik ApiGetWithSitesInfo Plugin\n\n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-ApiGetWithSitesInfo.svg?branch=master)](https:\/\/travis-ci.org\/piwik\/plugin-ApiGetWithSitesInfo)\n\n## Description\n\nModifies the 'API.get' output to also list the website name and main website URL.\n\nWhen calling the API method `API.get` it will be enriched with the following new fields for each website:\n\n * `idsite` - Website ID\n * `site_url` - Website URL\n * `site_name` - Website name\n\n If you specify `&idSite=all` it will decorate each website in the response with the new fields.\n \nThe output will look as follows:\n\n```\n<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<result>\n\t<idsite>2<\/idsite>\n\t<site_url>http:\/\/blog.shacklefordvetclinic.com<\/site_url>\n\t<site_name>Shackleford Road Veterinary Clinic<\/site_name>\n    <nb_uniq_visitors>2397<\/nb_uniq_visitors>\n    <nb_visits>2758<\/nb_visits>\n    <nb_actions>7943<\/nb_actions>\n    <bounce_count>1421<\/bounce_count>\n    <nb_conversions>987<\/nb_conversions>\n    <nb_visits_converted>838<\/nb_visits_converted>\n    <revenue>0<\/revenue>\n    <nb_pageviews>6370<\/nb_pageviews>\n    <nb_uniq_pageviews>5330<\/nb_uniq_pageviews>\n    <nb_downloads>368<\/nb_downloads>\n    <nb_uniq_downloads>305<\/nb_uniq_downloads>\n    <nb_outlinks>951<\/nb_outlinks>\n    <nb_uniq_outlinks>871<\/nb_uniq_outlinks>\n    <nb_searches>27<\/nb_searches>\n    <nb_keywords>25<\/nb_keywords>\n    <nb_hits_with_time_generation>5635<\/nb_hits_with_time_generation>\n    <conversion_rate>30.38%<\/conversion_rate>\n    <bounce_rate>52%<\/bounce_rate>\n    <nb_actions_per_visit>2.9<\/nb_actions_per_visit>\n    [...]\n```\n\n \n## Changelog\n\n* 0.1.2 - Fixed bug `Call to a member function getRowsCount() on a non-object`\n* 0.1.0 - Initial release\n\n## Support\n\nPlease direct any feedback to the [Issue tracker on Github.](https:\/\/github.com\/piwik\/plugin-ApiGetWithSitesInfo\/issues)\n",
    "numDownloads":2963,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-ApiGetWithSitesInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Modifies the 'API.get' output to also list the website name and main website URL.<\/p>\n\n<p>When calling the API method <code>API.get<\/code> it will be enriched with the following new fields for each website:<\/p>\n\n<ul><li><code>idsite<\/code> - Website ID<\/li>\n<li><code>site_url<\/code> - Website URL<\/li>\n<li><p><code>site_name<\/code> - Website name<\/p>\n\n<p>If you specify <code>&amp;idSite=all<\/code> it will decorate each website in the response with the new fields.<\/p><\/li>\n<\/ul><p>The output will look as follows:<\/p>\n\n<pre><code>&lt;?xml version=\"1.0\" encoding=\"utf-8\" ?&gt;\n&lt;result&gt;\n    &lt;idsite&gt;2&lt;\/idsite&gt;\n    &lt;site_url&gt;http:\/\/blog.shacklefordvetclinic.com&lt;\/site_url&gt;\n    &lt;site_name&gt;Shackleford Road Veterinary Clinic&lt;\/site_name&gt;\n    &lt;nb_uniq_visitors&gt;2397&lt;\/nb_uniq_visitors&gt;\n    &lt;nb_visits&gt;2758&lt;\/nb_visits&gt;\n    &lt;nb_actions&gt;7943&lt;\/nb_actions&gt;\n    &lt;bounce_count&gt;1421&lt;\/bounce_count&gt;\n    &lt;nb_conversions&gt;987&lt;\/nb_conversions&gt;\n    &lt;nb_visits_converted&gt;838&lt;\/nb_visits_converted&gt;\n    &lt;revenue&gt;0&lt;\/revenue&gt;\n    &lt;nb_pageviews&gt;6370&lt;\/nb_pageviews&gt;\n    &lt;nb_uniq_pageviews&gt;5330&lt;\/nb_uniq_pageviews&gt;\n    &lt;nb_downloads&gt;368&lt;\/nb_downloads&gt;\n    &lt;nb_uniq_downloads&gt;305&lt;\/nb_uniq_downloads&gt;\n    &lt;nb_outlinks&gt;951&lt;\/nb_outlinks&gt;\n    &lt;nb_uniq_outlinks&gt;871&lt;\/nb_uniq_outlinks&gt;\n    &lt;nb_searches&gt;27&lt;\/nb_searches&gt;\n    &lt;nb_keywords&gt;25&lt;\/nb_keywords&gt;\n    &lt;nb_hits_with_time_generation&gt;5635&lt;\/nb_hits_with_time_generation&gt;\n    &lt;conversion_rate&gt;30.38%&lt;\/conversion_rate&gt;\n    &lt;bounce_rate&gt;52%&lt;\/bounce_rate&gt;\n    &lt;nb_actions_per_visit&gt;2.9&lt;\/nb_actions_per_visit&gt;\n    [...]\n<\/code><\/pre>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>0.1.2 - Fixed bug <code>Call to a member function getRowsCount() on a non-object<\/code><\/li>\n<li>0.1.0 - Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/ApiGetWithSitesInfo\/download\/0.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"Bandwidth",
  "displayName":"Bandwidth",
  "owner":"piwik",
  "description":"Monitor Bandwidth for each page, download, and measure overall traffic in bytes",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2015-02-18 03:50:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-Bandwidth",
  "lastUpdated":"2016-01-28 16:10:04",
  "latestVersion":"0.1.2",
  "numDownloads":7742,"screenshots":[],"previews":[],"activity":{"numCommits":"62",
    "numContributors":"6",
    "lastCommitDate":"2016-03-15 04:19:37"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-02-18 03:50:05",
    "requires":{"piwik":">=2.11.0-b3"},"readme":"",
    "numDownloads":1809,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-Bandwidth\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Bandwidth\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-06-09 04:08:04",
    "requires":{"piwik":">=2.11.0-b3"},"readme":"",
    "numDownloads":3477,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-Bandwidth\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Bandwidth\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2016-01-28 16:10:04",
    "requires":{"piwik":">=2.14.0"},"readme":"# Piwik Bandwidth Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-Bandwidth.svg?branch=master)](https:\/\/travis-ci.org\/piwik\/plugin-Bandwidth)\n\n## Description\n\nThis plugin allows you to measure the bandwidth that was used by each page view or download. \nIt enriches existing reports and APIs to show the used bandwidth. Find more information in the FAQ.\n\n## FAQ\n\n__How can I track the bandwidth?__\n\nLog analytics:\n\nThe bandwidth will be automatically tracked when using the [log importer](http:\/\/piwik.org\/log-analytics\/) as long as \nyour log format is supported.\n\nTracking API:\n\nIf you are using the [HTTP Tracking API](http:\/\/developer.piwik.org\/api-reference\/tracking-api) \nyou can specify the bandwidth in bytes by appending the URL parameter `bw_bytes=1234` to the tracking URL. In this case \na bandwidth of 1234 bytes will be tracked.\n\n__Which actions support tracking of bandwidth?__\n\nPageviews (Page URLs and Page Titles) as well as Downloads.\n\n__In which reports is the used bandwidth displayed?__\n\n* Page URLs \n* Page Titles\n* Downloads\n\nAll reports will show a column `Average Bandwidth` and `Sum Bandwidth`\n\nThe \"Visitors => Overview\" report shows a total bandwidth overview and it is possible to view the evolution over period.\n\n__Which APIs does this plugin define or enrich?__\n\nThere is a report `Bandwidth.get` returning the total bandwidth (across all actions).\n\nIt also enriches varies reports such as `Actions.get`, `Actions.getPageUrls`, `Actions.getPageTitles` and `Actions.getDownloads`.\nFor example it adds columns such as `avg_bandwidth`, `sum_bandwidth`, `min_bandwidth`, `max_bandwidth` to each page view.\n\n__Why are the bandwidth columns are not displayed in the UI?__\n\nMake sure the Bandwidth plugin is activated by going to `Administration => Plugins`. Also the bandwidth columns are not \ndisplayed if no bandwidth was tracked in the current selected month.\n\n## Changelog\n\n0.1.0 Initial Release\n\n## Support\n\nPlease direct any feedback to [hello@piwik.org](mailto:hello@piwik.org)",
    "numDownloads":2456,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-Bandwidth\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This plugin allows you to measure the bandwidth that was used by each page view or download. \nIt enriches existing reports and APIs to show the used bandwidth. Find more information in the FAQ.<\/p>\n\n",
      "faq":"<p><strong>How can I track the bandwidth?<\/strong><\/p>\n\n<p>Log analytics:<\/p>\n\n<p>The bandwidth will be automatically tracked when using the <a href=\"http:\/\/piwik.org\/log-analytics\/\">log importer<\/a> as long as \nyour log format is supported.<\/p>\n\n<p>Tracking API:<\/p>\n\n<p>If you are using the <a href=\"http:\/\/developer.piwik.org\/api-reference\/tracking-api\">HTTP Tracking API<\/a> \nyou can specify the bandwidth in bytes by appending the URL parameter <code>bw_bytes=1234<\/code> to the tracking URL. In this case \na bandwidth of 1234 bytes will be tracked.<\/p>\n\n<p><strong>Which actions support tracking of bandwidth?<\/strong><\/p>\n\n<p>Pageviews (Page URLs and Page Titles) as well as Downloads.<\/p>\n\n<p><strong>In which reports is the used bandwidth displayed?<\/strong><\/p>\n\n<ul><li>Page URLs <\/li>\n<li>Page Titles<\/li>\n<li>Downloads<\/li>\n<\/ul><p>All reports will show a column <code>Average Bandwidth<\/code> and <code>Sum Bandwidth<\/code><\/p>\n\n<p>The \"Visitors =&gt; Overview\" report shows a total bandwidth overview and it is possible to view the evolution over period.<\/p>\n\n<p><strong>Which APIs does this plugin define or enrich?<\/strong><\/p>\n\n<p>There is a report <code>Bandwidth.get<\/code> returning the total bandwidth (across all actions).<\/p>\n\n<p>It also enriches varies reports such as <code>Actions.get<\/code>, <code>Actions.getPageUrls<\/code>, <code>Actions.getPageTitles<\/code> and <code>Actions.getDownloads<\/code>.\nFor example it adds columns such as <code>avg_bandwidth<\/code>, <code>sum_bandwidth<\/code>, <code>min_bandwidth<\/code>, <code>max_bandwidth<\/code> to each page view.<\/p>\n\n<p><strong>Why are the bandwidth columns are not displayed in the UI?<\/strong><\/p>\n\n<p>Make sure the Bandwidth plugin is activated by going to <code>Administration =&gt; Plugins<\/code>. Also the bandwidth columns are not \ndisplayed if no bandwidth was tracked in the current selected month.<\/p>",
      "documentation":"",
      "changelog":"<p>0.1.0 Initial Release<\/p>"},"download":"\/api\/2.0\/plugins\/Bandwidth\/download\/0.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"Barometer",
  "displayName":"Barometer",
  "owner":"halfdan",
  "description":"Live Plugin that shows the current number of visitors on the page.",
  "homepage":"http:\/\/github.com\/halfdan\/piwik-barometer-plugin",
  "createdDateTime":"2014-12-23 00:38:20",
  "donate":{"flattr":"https:\/\/flattr.com\/profile\/test1",
    "bitcoin":null},"support":[{"name":"Documentation",
    "key":"docs",
    "value":"https:\/\/barometer.org\/docs\/",
    "type":"url"},{"name":"Wiki",
    "key":"wiki",
    "value":"https:\/\/github.com\/barometer\/piwik\/wiki",
    "type":"url"},{"name":"Forum",
    "key":"forum",
    "value":"https:\/\/baromter.forum.org",
    "type":"url"},{"name":"Email",
    "key":"email",
    "value":"barometer@example.com",
    "type":"email"},{"name":"IRC",
    "key":"irc",
    "value":"irc:\/\/freenode\/baromter",
    "type":"text"},{"name":"Issues \/ Bugs",
    "key":"issues",
    "value":"https:\/\/github.com\/barometer\/issues",
    "type":"url"},{"name":"Source",
    "key":"source",
    "value":"https:\/\/github.com\/barometer\/piwik\/",
    "type":"url"},{"name":"RSS",
    "key":"rss",
    "value":"https:\/\/barometer.org\/feed\/",
    "type":"url"}],"isTheme":false,"keywords":["barometer",
    "live"],"basePrice":0,"authors":[{"name":"Fabian Becker",
    "email":"test8@example.com",
    "homepage":"http:\/\/geekproject.eu"}],"repositoryUrl":"https:\/\/github.com\/halfdan\/piwik-barometer-plugin",
  "lastUpdated":"2014-12-23 00:41:21",
  "latestVersion":"0.5.0",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/Barometer\/images\/piwik-barometer-01.png",
    "https:\/\/plugins.piwik.org\/Barometer\/images\/piwik-barometer-02.png"],"previews":[{"type":"demo",
    "provider":"link",
    "url":"https:\/\/demo.piwik.org"}],"activity":{"numCommits":"31",
    "numContributors":"3",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.1",
    "release":"2014-12-23 00:38:20",
    "requires":{"piwik":">=1.10.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/halfdan\/piwik-barometer-plugin\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Barometer\/download\/0.1.1"},{"name":"0.5.0",
    "release":"2014-12-23 00:41:21",
    "requires":{},"readme":"# Piwik Barometer Plugin\n\n## Description\n\nThis is a plugin for the Open Source Web Analytics platform Piwik. If enabled, it will add a two new widgets that you can add to your dashboard.\n\nThe widgets will show a Visitor Barometer and a Visit Time Barometer that auto-refresh every 5 seconds. It shows the number of visitors or visit time in a N minute period compared to the maximum number of visitors\/average visit time in any N minute period of the last 30 days.\n\nThe idea for this plugin came from [@muesli](http:\/\/github.com\/muesli) who suggested it on #piwik in IRC.\n\n## Documentation\n\n1. Clone the plugin into the plugins directory of your Piwik installation.\n\n   ```\n   cd plugins\/\n   git clone https:\/\/github.com\/halfdan\/piwik-barometer-plugin.git Barometer\n   ```\n\n2. Login as superuser into your Piwik installation and activate the plugin under Settings -> Plugins\n\n3. You will now find the widget under the Live! section.\n\n## Contribute \n\nIf you are interested in contributing to this plugin, feel free to send pull requests!\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/halfdan\/piwik-barometer-plugin\/commits\/v0.5.0",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for the Open Source Web Analytics platform Piwik. If enabled, it will add a two new widgets that you can add to your dashboard.<\/p>\n\n<p>The widgets will show a Visitor Barometer and a Visit Time Barometer that auto-refresh every 5 seconds. It shows the number of visitors or visit time in a N minute period compared to the maximum number of visitors\/average visit time in any N minute period of the last 30 days.<\/p>\n\n<p>The idea for this plugin came from <a href=\"http:\/\/github.com\/muesli\">@muesli<\/a> who suggested it on #piwik in IRC.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/Barometer\/download\/0.5.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"Chat",
  "displayName":"Chat",
  "owner":"VincentLahaye",
  "description":"Not production ready. Join the Beta test ! Engage people you don't know at all, with this targeted and efficient chat system, directly integrated into",
  "homepage":"https:\/\/github.com\/VincentLahaye\/piwik-chat",
  "createdDateTime":"2014-06-13 09:10:06",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat",
  "lastUpdated":"2014-08-20 09:08:05",
  "latestVersion":"0.2.4",
  "numDownloads":5705,"screenshots":[],"previews":[],"activity":{"numCommits":"2",
    "numContributors":"2",
    "lastCommitDate":"2014-08-20 09:08:00"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.1",
    "release":"2014-06-13 09:10:06",
    "requires":{"piwik":">=2.4.0-b4"},"readme":"",
    "numDownloads":2,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-06-13 09:52:05",
    "requires":{"piwik":">=2.4.0-b4"},"readme":"",
    "numDownloads":92,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2014-06-23 11:54:10",
    "requires":{"piwik":">=2.4.0-b4"},"readme":"",
    "numDownloads":109,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2014-06-29 15:12:05",
    "requires":{"piwik":">=2.4.0-b4"},"readme":"",
    "numDownloads":513,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.1.4"},{"name":"0.1.5",
    "release":"2014-08-13 10:42:05",
    "requires":{"piwik":">=2.4.0"},"readme":"",
    "numDownloads":70,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.1.5"},{"name":"0.1.6",
    "release":"2014-08-14 10:08:05",
    "requires":{"piwik":">=2.4.0"},"readme":"",
    "numDownloads":127,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.1.6"},{"name":"0.2.0",
    "release":"2014-08-19 16:58:06",
    "requires":{"piwik":">=2.4.0"},"readme":"",
    "numDownloads":2,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2014-08-19 17:16:05",
    "requires":{"piwik":">=2.4.0"},"readme":"",
    "numDownloads":31,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.2.1"},{"name":"0.2.2",
    "release":"2014-08-20 07:34:06",
    "requires":{"piwik":">=2.4.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.2.2"},{"name":"0.2.3",
    "release":"2014-08-20 07:58:06",
    "requires":{"piwik":">=2.4.0"},"readme":"",
    "numDownloads":6,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.2.3"},{"name":"0.2.4",
    "release":"2014-08-20 09:08:05",
    "requires":{"piwik":">=2.4.0"},"readme":"# Chat Plugin for Piwik (BETA)\nThis plugin is not production ready, but any help is appreciate!\n\nEngage people you don't know at all, with this targeted and efficient chat system, directly integrated into Piwik.\n\nThe client has these three states, plus a minimized state :\n\n![Chat Client](\/screenshots\/ClientState2.png?raw=true \"Chat Client State 2\")\n![Chat Client](\/screenshots\/ClientState3.png?raw=true \"Chat Client State 3\")\n![Chat Client](\/screenshots\/ClientState4.png?raw=true \"Chat Client State 4\")\n\nAnd here is the updated Visitor Profile :\n![Backend](\/screenshots\/BackendVisitorProfile.png?raw=true \"Visitor Profile in Backend\")\n\n## Installation\nAdd this code, after Piwik's tracking code :\n\n    <!-- Piwik Chat -->\n    <script type=\"text\/javascript\">\n        (function() {\n            var u=((\"https:\" == document.location.protocol) ? \"https:\/\/{$PIWIK_URL}\/\" : \"http:\/\/{$PIWIK_URL}\/\");\n            var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text\/javascript';\n            g.defer=true; g.async=true; g.src=u+'plugins\/Chat\/javascripts\/client\/client.js'; s.parentNode.insertBefore(g,s);\n        })();\n    <\/script>\n    <!-- End Piwik Chat Code -->\n\n## How it works\nOn the backend, this plugin modifies the visitorProfile popup, by adding to it a \"Chat\" tab next to \"Visited pages\". A new menu \"Chat\" is available, which allows to browse all conversations.\n\nSoon, a reporting system will be integrated, which will show figures like conversion rate or engagement, in function of the Chat's use.\n\nAfter installing the plugin, you have to modify your tracking code. It includes the file \"javascripts\/client\/client.js\", which waits for the Tracker() to initialize, then appends an iframe to the page. This iframe requests the \"popout\" action of the controller, where the plugin tries to identify the visitor based on his visitorID or configID.\n\n## Changelog\n\nv0.2.2 :\n\n+ Add DB Versioning support\n\nv0.2 :\n\n+ Piwik 2.5.0 ready\n+ Add automatic messages based on segment recognition\n+ General improvement on client popout\n    + Load message over ajax\n    + Add moment.js\n    + Update the communication (based on easyXDM) between the popout and its parent iframe. See : https:\/\/github.com\/VincentLahaye\/piwik-chat\/commit\/ced4662d83cc8efc98b58b27e92ab6d06bb29546\n+ Update VisitorProfile popup\n    + Improve textarea input interractions\n+ Rewrite a lot of code regarding the \"model\" file Conversation.php, now split in different files\n\nv0.1.6 :\n\n+ Add a reporting bug system\n\n\nv0.1.5 :\n\n+    Notification system improved\n    +    Add email notification to offline staf members\n    +    Add title notification\n    +    Improve sound and menu notification, now working on all CoreHome module\n+    Add german translation\n+    Fix wrong inclusion paths on client popout\n+    Fix online staff indicator on client popout\n\n\nv0.1 :\n\n+   Basic chat functions with client\/server communication and Piwik integration\n+   Add additional inputs in the visitor profile in order to save personal informations about a visitor (name, email, phone and comments)\n+   The client shows if someone of the staff is online or not\n+   Sound notifications on both sides\n+   French translation\n\n## Roadmap\nv0.3 :\n\n*   Add a reporting system that shows figures about the module impact\n*   Add external cache support for polling (APC, Memcache, opCache...)\n\n## Academical study\nAs an MSc student in eBusiness, this project is part of my final dissertation : \"How to engage people you don't know at all ?\".\n\nThe first part of this project is to develop the module and its reporting system. Then, the second part will be about analyse the impact of this Chat system (conversion rate, engagement, etc..) in function of its use, and eventually try to determine which way of use is the most efficient. From this research it may be possible to provide advices and answer questions like : What is the best behavior to adopt as an operator? What kinds of automatic messages are the more efficient in order to increase conversion?\n\nTo lead this study, I will need data! And if you support my work, you'll be able to send me your reports via the plugin, in an anonymized way.",
    "numDownloads":4752,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/VincentLahaye\/piwik-chat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "documentation":"",
      "changelog":"<p>v0.2.2 :<\/p>\n\n<ul><li>Add DB Versioning support<\/li>\n<\/ul><p>v0.2 :<\/p>\n\n<ul><li>Piwik 2.5.0 ready<\/li>\n<li>Add automatic messages based on segment recognition<\/li>\n<li>General improvement on client popout\n\n<ul><li>Load message over ajax<\/li>\n<li>Add moment.js<\/li>\n<li>Update the communication (based on easyXDM) between the popout and its parent iframe. See : https:\/\/github.com\/VincentLahaye\/piwik-chat\/commit\/ced4662d83cc8efc98b58b27e92ab6d06bb29546<\/li>\n<\/ul><\/li>\n<li>Update VisitorProfile popup\n\n<ul><li>Improve textarea input interractions<\/li>\n<\/ul><\/li>\n<li>Rewrite a lot of code regarding the \"model\" file Conversation.php, now split in different files<\/li>\n<\/ul><p>v0.1.6 :<\/p>\n\n<ul><li>Add a reporting bug system<\/li>\n<\/ul><p>v0.1.5 :<\/p>\n\n<ul><li>Notification system improved\n\n<ul><li>Add email notification to offline staf members<\/li>\n<li>Add title notification<\/li>\n<li>Improve sound and menu notification, now working on all CoreHome module<\/li>\n<\/ul><\/li>\n<li>Add german translation<\/li>\n<li>Fix wrong inclusion paths on client popout<\/li>\n<li>Fix online staff indicator on client popout<\/li>\n<\/ul><p>v0.1 :<\/p>\n\n<ul><li>Basic chat functions with client\/server communication and Piwik integration<\/li>\n<li>Add additional inputs in the visitor profile in order to save personal informations about a visitor (name, email, phone and comments)<\/li>\n<li>The client shows if someone of the staff is online or not<\/li>\n<li>Sound notifications on both sides<\/li>\n<li>French translation<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/Chat\/download\/0.2.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ClickHeat",
  "displayName":"Click Heat",
  "owner":"piwikjapan",
  "description":"ClickHeat is a visual heatmap of clicks on a HTML page. This plugin based on Dugwood's ClickHeat version 1.14. Plugin not consider IIS. Sorry.",
  "homepage":"http:\/\/piwikjapan.org",
  "createdDateTime":"2015-04-23 01:56:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwikjapan\/plugin-clickheat",
  "lastUpdated":"2015-04-27 15:46:04",
  "latestVersion":"0.1.5",
  "numDownloads":8559,"screenshots":[],"previews":[],"activity":{"numCommits":"13",
    "numContributors":"3",
    "lastCommitDate":"2016-05-27 17:59:06"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.1",
    "release":"2015-04-23 01:56:05",
    "requires":{"piwik":">=2.11.1"},"readme":"",
    "numDownloads":49,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwikjapan\/plugin-clickheat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ClickHeat\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2015-04-23 14:12:04",
    "requires":{"piwik":">=2.11.0"},"readme":"",
    "numDownloads":72,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwikjapan\/plugin-clickheat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ClickHeat\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2015-04-25 14:38:05",
    "requires":{"piwik":">=2.11.0"},"readme":"",
    "numDownloads":64,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwikjapan\/plugin-clickheat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ClickHeat\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2015-04-27 13:54:05",
    "requires":{"piwik":">=2.11.0"},"readme":"",
    "numDownloads":21,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwikjapan\/plugin-clickheat\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ClickHeat\/download\/0.1.4"},{"name":"0.1.5",
    "release":"2015-04-27 15:46:04",
    "requires":{"piwik":">=2.11.0"},"readme":"# Piwik ClickHeat Plugin\n\n## Description\nClickHeat is a visual heatmap of clicks on a HTML page, showing hot and cold click zones. This plugin based on [Dugwood's ClickHeat version 1.14](https:\/\/github.com\/dugwood\/clickheat). It is an OpenSource software, released under GPL licence, and free of charge. \n\n__Plugin not consider the IIS.__ Sorry. We are waiting patches for IIS.\n\n## Installation\nInstall it via Piwik Marketplace.\n\nThis plugin installer will make directories:\n* yourpiwik\/tmp\/cache\/clickheat\/cache\n* yourpiwik\/tmp\/cache\/clickheat\/logs.\n\nThis plugin uses a different tracker. Please click on the link \"JavaScript\" and put the special Javascript codes into your website.\n\n## FAQ\n__What exactly is included in this feature ?__\n\n* pick up a siteid\n* pick up a period\n* pick up a browser type\n* pick up a specific web page\n\n__And what functions are not included in this feature ?__\n\n* remove special addresses defined on the control panel.\n* remove special browsers defined on the control panel.\n* filters based on added segmentation\n\n__Where is the coordinate information from the browser ?__\n\nClickHeat plugin uses text files to record the coordinate data of each browser in directory: yourpiwik\/tmp\/cache\/clickheat\/logs.\n\n__What is \"click.php returned a status code 403\" ?__\n\nYou have to perform the upgrade immediately to version 0.1.5. I forgot to put .htaccess.\n\n__After installing the plugin, Piwik Administration area shows \"page not found 404 error\".__\n\nThis plugin doesn't consider the IIS. Sorry. And please delete the ClickHeat plugin (yourpiwik\/plugins\/ClickHeat) manually via FTP or Explorer. We are waiting patches for IIS.\n\n__Does it withstands high traffics ?__\n\nThis plugin uses minimal text to record data and file based logging. And when click.php is called from a special Javascript for cgi, just append text on end of the each file. And when you analyze the click data and make a heatmap, plugin will create cached heatmap as png image file. \n\nTherefore, we expect the plugin light works, but we don't know what load it has under Piwik 2.x. So we are very glad, when you inform us about your situation. \n\nPlease see the link [Performance and optimization](http:\/\/www.labsmedia.com\/clickheat\/156894.html) about system resources. If you want performance, you need to avoid to use a cgi, that is possible. It method is explained on the link. \n\n__New click data were added, but not updated heatmap. Why ?__\n\nPlugin places heatmap images in the cache directory: yourpiwik\/tmp\/cache\/clickheat\/cache. Therefore when you suddenly met with such probrem, you can delete cache files, but __do not delete cache directory__.\n\n__Showed a heatmap, but not overlay a heatmap to the target web page. Why ?__\n\nCheck that your website does not set the HTTP header __X-FRAME-OPTIONS__ to __SAMEORIGIN__ as this will prevent this plugin from iframing your website for the heatmap report. Please see [Page Overlay Troubleshooting](http:\/\/piwik.org\/docs\/page-overlay\/#page-overlay-troubleshooting), that is same problem.\n\n## Changelog\n\n* 0.1.0 First beta\n* 0.1.2 to append faq\n* 0.1.3 to append faq\n* 0.1.5 to add .htaccess\n\n## License\nGPL v3 or later\n\n## Support\nPlease direct any feedback to [yamachan@piwikjapan.org](mailto:yamachan@piwikjapan.org).\n",
    "numDownloads":8353,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwikjapan\/plugin-clickheat\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>ClickHeat is a visual heatmap of clicks on a HTML page, showing hot and cold click zones. This plugin based on <a href=\"https:\/\/github.com\/dugwood\/clickheat\">Dugwood's ClickHeat version 1.14<\/a>. It is an OpenSource software, released under GPL licence, and free of charge.<\/p>\n\n<p><strong>Plugin not consider the IIS.<\/strong> Sorry. We are waiting patches for IIS.<\/p>\n\n",
      "faq":"<p><strong>What exactly is included in this feature ?<\/strong><\/p>\n\n<ul><li>pick up a siteid<\/li>\n<li>pick up a period<\/li>\n<li>pick up a browser type<\/li>\n<li>pick up a specific web page<\/li>\n<\/ul><p><strong>And what functions are not included in this feature ?<\/strong><\/p>\n\n<ul><li>remove special addresses defined on the control panel.<\/li>\n<li>remove special browsers defined on the control panel.<\/li>\n<li>filters based on added segmentation<\/li>\n<\/ul><p><strong>Where is the coordinate information from the browser ?<\/strong><\/p>\n\n<p>ClickHeat plugin uses text files to record the coordinate data of each browser in directory: yourpiwik\/tmp\/cache\/clickheat\/logs.<\/p>\n\n<p><strong>What is \"click.php returned a status code 403\" ?<\/strong><\/p>\n\n<p>You have to perform the upgrade immediately to version 0.1.5. I forgot to put .htaccess.<\/p>\n\n<p><strong>After installing the plugin, Piwik Administration area shows \"page not found 404 error\".<\/strong><\/p>\n\n<p>This plugin doesn't consider the IIS. Sorry. And please delete the ClickHeat plugin (yourpiwik\/plugins\/ClickHeat) manually via FTP or Explorer. We are waiting patches for IIS.<\/p>\n\n<p><strong>Does it withstands high traffics ?<\/strong><\/p>\n\n<p>This plugin uses minimal text to record data and file based logging. And when click.php is called from a special Javascript for cgi, just append text on end of the each file. And when you analyze the click data and make a heatmap, plugin will create cached heatmap as png image file.<\/p>\n\n<p>Therefore, we expect the plugin light works, but we don't know what load it has under Piwik 2.x. So we are very glad, when you inform us about your situation.<\/p>\n\n<p>Please see the link <a href=\"http:\/\/www.labsmedia.com\/clickheat\/156894.html\">Performance and optimization<\/a> about system resources. If you want performance, you need to avoid to use a cgi, that is possible. It method is explained on the link.<\/p>\n\n<p><strong>New click data were added, but not updated heatmap. Why ?<\/strong><\/p>\n\n<p>Plugin places heatmap images in the cache directory: yourpiwik\/tmp\/cache\/clickheat\/cache. Therefore when you suddenly met with such probrem, you can delete cache files, but <strong>do not delete cache directory<\/strong>.<\/p>\n\n<p><strong>Showed a heatmap, but not overlay a heatmap to the target web page. Why ?<\/strong><\/p>\n\n<p>Check that your website does not set the HTTP header <strong>X-FRAME-OPTIONS<\/strong> to <strong>SAMEORIGIN<\/strong> as this will prevent this plugin from iframing your website for the heatmap report. Please see <a href=\"http:\/\/piwik.org\/docs\/page-overlay\/#page-overlay-troubleshooting\">Page Overlay Troubleshooting<\/a>, that is same problem.<\/p>",
      "documentation":"",
      "changelog":"<ul><li>0.1.0 First beta<\/li>\n<li>0.1.2 to append faq<\/li>\n<li>0.1.3 to append faq<\/li>\n<li>0.1.5 to add .htaccess<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/ClickHeat\/download\/0.1.5"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"Counter",
  "displayName":"Counter",
  "owner":"Globulopolis",
  "description":"Display Hits\/Visits on image",
  "homepage":"http:\/\/xn--80aeqbhthr9b.com\/en\/others\/piwik\/10-piwik-graphical-counter.html",
  "createdDateTime":"2014-12-23 01:14:18",
  "donate":{},"support":[],"isTheme":false,"keywords":["piwik",
    "counter image",
    "image counter",
    "piwik visible counter",
    "show hits piwik",
    "show visits piwik"],"basePrice":0,"authors":[{"name":"Viper",
    "email":null,"homepage":null}],"repositoryUrl":"https:\/\/github.com\/Globulopolis\/Counter",
  "lastUpdated":"2014-12-23 01:14:18",
  "latestVersion":"2.0.2",
  "numDownloads":0,"screenshots":[],"previews":[],"activity":{"numCommits":"10",
    "numContributors":"1",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"2.0.2",
    "release":"2014-12-23 01:14:18",
    "requires":{},"readme":"# Piwik counter plugin\n\n## Description\n\nDisplay Hits\/Visits on image\n\n## FAQ\n\nSee http:\/\/xn--80aeqbhthr9b.com\/en\/others\/piwik\/10-piwik-graphical-counter.html\n\n## Changelog\n2.0.2\n* Fixed a bug where the URL with the image displayed via http, if you are using https(bug only in counters list).\n\n2.0.1\n* Fix for CORS (thanks for aureq for patch)\n* Changing versioning according to requirements\n\n2.0 Initial release\n\n## Support\n\nhttp:\/\/xn--80aeqbhthr9b.com\/en\/contact-form.html",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/Globulopolis\/Counter\/commits\/2.0.2",
    "readmeHtml":{"description":"\n\n<p>Display Hits\/Visits on image<\/p>\n\n",
      "faq":"<p>See http:\/\/xn--80aeqbhthr9b.com\/en\/others\/piwik\/10-piwik-graphical-counter.html<\/p>",
      "documentation":"",
      "changelog":"<p>2.0.2\n* Fixed a bug where the URL with the image displayed via http, if you are using https(bug only in counters list).<\/p>\n\n<p>2.0.1\n* Fix for CORS (thanks for aureq for patch)\n* Changing versioning according to requirements<\/p>\n\n<p>2.0 Initial release<\/p>"},"download":"\/api\/2.0\/plugins\/Counter\/download\/2.0.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"CustomAlerts",
  "displayName":"Custom Alerts",
  "owner":"piwik",
  "description":"Alerts are a great way to get notified of changes on your website. This is a beta version.",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2014-12-23 01:07:23",
  "donate":{},"support":[],"isTheme":false,"keywords":["alerts",
    "notification",
    "report",
    "monitoring"],"basePrice":0,"authors":[{"name":"Piwik",
    "email":"test1@example.com",
    "homepage":"http:\/\/piwik.org"}],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts",
  "lastUpdated":"2014-12-23 01:16:54",
  "latestVersion":"0.1.12",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/CustomAlerts\/images\/Create_Alert.png",
    "https:\/\/plugins.piwik.org\/CustomAlerts\/images\/History_Of_Alerts.png",
    "https:\/\/plugins.piwik.org\/CustomAlerts\/images\/List_Of_Alerts.png"],"previews":[],"activity":{"numCommits":"300",
    "numContributors":"7",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-12-23 01:07:25",
    "requires":{"piwik":">=2.0.4"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.0.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-12-23 01:08:03",
    "requires":{"piwik":">=2.0.4"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-12-23 01:08:23",
    "requires":{"piwik":">=2.0.4-b1"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2014-12-23 01:08:43",
    "requires":{"piwik":">=2.0.4-b1"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.3",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2014-12-23 01:11:39",
    "requires":{"piwik":">=2.0.4-b3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.4",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.4"},{"name":"0.1.5",
    "release":"2014-12-23 01:11:59",
    "requires":{"piwik":">=2.0.4-b3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.5",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.5"},{"name":"0.1.6",
    "release":"2014-12-23 01:12:20",
    "requires":{"piwik":">=2.0.4-b3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.6",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.6"},{"name":"0.1.7",
    "release":"2014-12-23 01:12:42",
    "requires":{"piwik":">=2.0.4-b3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.7",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.7"},{"name":"0.1.8-b1",
    "release":"2014-12-23 01:13:41",
    "requires":{"piwik":">=2.0.4-b5"},"readme":"",
    "numDownloads":0,"license":{"name":"Commercial license",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.8",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.8-b1"},{"name":"0.1.9",
    "release":"2014-12-23 01:14:00",
    "requires":{"piwik":">=2.0.4-b5"},"readme":"",
    "numDownloads":0,"license":{"name":"Commercial license",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.9",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.9"},{"name":"0.1.10",
    "release":"2014-12-23 01:15:35",
    "requires":{"piwik":">=2.0.4-b7"},"readme":"",
    "numDownloads":0,"license":{"name":"Commercial license",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.10",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.10"},{"name":"0.1.11",
    "release":"2014-12-23 01:15:57",
    "requires":{"piwik":">=2.0.4-b7"},"readme":"",
    "numDownloads":0,"license":{"name":"Commercial license",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.11",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.11"},{"name":"0.1.12",
    "release":"2014-12-23 01:16:54",
    "requires":{"piwik":">=2.0.4-b9"},"readme":"# Piwik CustomAlerts Plugin \n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-CustomAlerts.png?branch=master)](https:\/\/travis-ci.org\/piwik\/plugin-CustomAlerts)\n\n## Description\n\nCreate Custom Alerts + Be notified by email\/SMS!\n\nAlerts are a great way to get notified of changes on your website. Want to know if your new product hits less than 100 sales in a week or your new article attracts more than 200 visitors a day? Create alerts that make sense to you. Be notified by email or SMS when the conditions for your alerts are met. Stay on top of your website!\n\nThe Alert log will help you to better understand the success of your website. You can use it to analyze how often your website hit more than 10000 visits per day or on how many days a product was sold more than 50 times.\n\nThis plugin was [crowdfunded with the support](http:\/\/crowdfunding.piwik.org\/custom-alerts-plugin\/) of 37 Piwik community members!\n\n## Installation\n\nInstall it via Piwik Marketplace\n\n## FAQ\n\n__What exactly is included in this feature?__\n\nHere is the complete list of features that are included in this project:\n\n* Define new Alert (\"Big drop in purchases\")\n* Select a website on which the Alert is defined\n* Receive an alert by email (email will contain Alert description + link to Piwik dashboard URL for the given website ID and period).\n* Receive an alert by SMS (SMS will contain Alert description and numbers that triggered the Alert)\n* Select the Alert period: should it be daily, weekly or monthly?\n* Select the report (Websites, Keywords, Countries, general stats)\n* Define Metrics (visits, page view, avg. visit duration, Goal 1 conversions, total goal conversions, etc.)\n* Define the Alert: when Visits decrease 50%, when purchases are more than 50 per day, etc.\n\n__What reports are available to the Alert system?__\n\nYou can create an alert for any available report in Piwik. Plugins can define new reports which will be automatically picked up by Alerts.\n\n__What alert conditions are available?__\n\nYou can create alerts for the following metrics:\n\n* Visits, Visits Evolution, Unique Visits\n* Actions, Action Evolution\n* Pageviews, Pageviews Evolution\n* Time on page\n* Bounce rate\n* Goal revenue\n* Downloads\n* and many more..\n\nTo define the condition you can select the conditions:\n\n* Greater than, less than\n* Equal, Not Equal\n* Percentage increase\/decrease\n\n## Changelog\n\n* 0.1.0 First beta\n\n## License\n\nGPL v3 or later\n\n## Support\n\n* Please direct any feedback to [hello@piwik.org](mailto:hello@piwik.org)\n\n",
    "numDownloads":0,"license":{"name":"Commercial license",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomAlerts\/commits\/0.1.12",
    "readmeHtml":{"description":"\n\n<p>Create Custom Alerts + Be notified by email\/SMS!<\/p>\n\n<p>Alerts are a great way to get notified of changes on your website. Want to know if your new product hits less than 100 sales in a week or your new article attracts more than 200 visitors a day? Create alerts that make sense to you. Be notified by email or SMS when the conditions for your alerts are met. Stay on top of your website!<\/p>\n\n<p>The Alert log will help you to better understand the success of your website. You can use it to analyze how often your website hit more than 10000 visits per day or on how many days a product was sold more than 50 times.<\/p>\n\n<p>This plugin was <a href=\"http:\/\/crowdfunding.piwik.org\/custom-alerts-plugin\/\">crowdfunded with the support<\/a> of 37 Piwik community members!<\/p>\n\n",
      "faq":"<p><strong>What exactly is included in this feature?<\/strong><\/p>\n\n<p>Here is the complete list of features that are included in this project:<\/p>\n\n<ul><li>Define new Alert (\"Big drop in purchases\")<\/li>\n<li>Select a website on which the Alert is defined<\/li>\n<li>Receive an alert by email (email will contain Alert description + link to Piwik dashboard URL for the given website ID and period).<\/li>\n<li>Receive an alert by SMS (SMS will contain Alert description and numbers that triggered the Alert)<\/li>\n<li>Select the Alert period: should it be daily, weekly or monthly?<\/li>\n<li>Select the report (Websites, Keywords, Countries, general stats)<\/li>\n<li>Define Metrics (visits, page view, avg. visit duration, Goal 1 conversions, total goal conversions, etc.)<\/li>\n<li>Define the Alert: when Visits decrease 50%, when purchases are more than 50 per day, etc.<\/li>\n<\/ul><p><strong>What reports are available to the Alert system?<\/strong><\/p>\n\n<p>You can create an alert for any available report in Piwik. Plugins can define new reports which will be automatically picked up by Alerts.<\/p>\n\n<p><strong>What alert conditions are available?<\/strong><\/p>\n\n<p>You can create alerts for the following metrics:<\/p>\n\n<ul><li>Visits, Visits Evolution, Unique Visits<\/li>\n<li>Actions, Action Evolution<\/li>\n<li>Pageviews, Pageviews Evolution<\/li>\n<li>Time on page<\/li>\n<li>Bounce rate<\/li>\n<li>Goal revenue<\/li>\n<li>Downloads<\/li>\n<li>and many more..<\/li>\n<\/ul><p>To define the condition you can select the conditions:<\/p>\n\n<ul><li>Greater than, less than<\/li>\n<li>Equal, Not Equal<\/li>\n<li>Percentage increase\/decrease<\/li>\n<\/ul>",
      "documentation":"",
      "changelog":"<ul><li>0.1.0 First beta<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/CustomAlerts\/download\/0.1.12"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"CustomDimensions",
  "displayName":"Custom Dimensions",
  "owner":"piwik",
  "description":"Extend Piwik to your needs by defining and tracking Custom Dimensions in scope Action or Visit",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2015-11-25 03:26:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-CustomDimensions",
  "lastUpdated":"2016-02-04 19:56:04",
  "latestVersion":"0.1.4",
  "numDownloads":2584,"screenshots":[],"previews":[],"activity":{"numCommits":"67",
    "numContributors":"4",
    "lastCommitDate":"2016-06-02 15:56:37"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-11-25 03:26:04",
    "requires":{"piwik":">=2.15.1-b3"},"readme":"",
    "numDownloads":100,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomDimensions\/commits\/0.1.11",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomDimensions\/download\/0.1.0"},{"name":"0.1.2",
    "release":"2015-12-07 04:16:04",
    "requires":{"piwik":">=2.15.1-b8"},"readme":"",
    "numDownloads":477,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomDimensions\/commits\/0.1.12",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomDimensions\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2016-01-21 19:30:07",
    "requires":{"piwik":">=2.15.1-b8"},"readme":"",
    "numDownloads":254,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomDimensions\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomDimensions\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2016-02-04 19:56:04",
    "requires":{"piwik":">=2.15.1-b8"},"readme":"# Piwik CustomDimensions Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-CustomDimensions.svg?branch=master)](https:\/\/travis-ci.org\/piwik\/plugin-CustomDimensions)\n\n## Description\n\nThis plugins allows you to configure and track any [Custom Dimensions](https:\/\/piwik.org\/docs\/custom-dimensions\/). You can configure a Custom Dimension\nby giving it a name and a scope (Action or Visit). Afterwards you will see a new menu item in the reporting area\nfor each configured dimension and be able to get its data. You can also export the report as a widget, segment by this\n dimenson, and more. For more information read the [Custom Dimensions user guide](https:\/\/piwik.org\/docs\/custom-dimensions\/) or have a look in the FAQ.\n\n*Warning*: Depending on the database size of your Piwik this plugin may take a long time to install.\n\n## FAQ\n\n__I have a large database, can I install the plugin on the command line?__\n\nYes, this is not only possible but even recommended as the installation may take hours. To do this follow these steps:\n\n* Download the Plugin from [https:\/\/plugins.piwik.org\/CustomDimensions](https:\/\/plugins.piwik.org\/CustomDimensions)\n* Extract the files within the downloaded ZIP file\n* Copy the `CustomDimensions` directory into the `plugins` directory of your Piwik\n* Execute the command `.\/console plugin:activate CustomDimensions` within your Piwik directory\n\n__Where can I manage Custom Dimensions?__\n\nCustom Dimensions can be managed by clicking on your username or user icon in the top right. There will be a menu\nitem \"Custom Dimensions\" within the \"Manage\" section of the left menu. By clicking on it you can manage Custom Dimensions.\nPlease note that the permission Admin is required in order to be able to manage them.\n\n__Where can I find the Id for a Custom Dimension?__\n\nYou can find them by going to the \"Manage Custom Dimensions\" page in your personal area. For each dimension you will\nfind the Id in the table that lists all available Custom Dimensions.\n\n__How do I set a value for a dimension in the JavaScript Tracker?__\n\nPlease have a look at the [JavaScript Tracker guide for Custom Dimensions](https:\/\/developer.piwik.org\/guides\/tracking-javascript-guide#custom-dimensions).\n\n__How do I set a value for a dimension in the PHP Tracker?__\n\n`$tracker->setCustomTrackingParameter('dimension' . $customDimensionId, $value);`\n\nPlease note custom tracking parameters are cleared after each tracking request. If you want to keep the same\nCustom Dimensions over all request make sure to call this method before each tracking call.\n\n__I have configured all available Custom Dimension slots, can I add more?__\n\nYes, this is possible. To make a new Custom Dimension slot available execute the following command including the scope option:\n\n```\n.\/console customdimensions:add-custom-dimension --scope=action\n.\/console customdimensions:add-custom-dimension --scope=visit\n```\n\nBe aware that this can take a long time depending on the size of your database as it requires MySQL schema changes.\nYou can directly create multiple Custom Dimension slots. To do this add the option `--count=X`. Usually it doesn't take much\nlonger to create directly multiple new slots.\n\n__Is it possible to delete a Custom Dimension and all of its data?__\n\nIn the UI it is only possible to deactivate a dimension. However, on the command line you can remove a Custom Dimension\nand report it's log data by executing the following console command:\n\n```\n.\/console customdimensions:remove-custom-dimension --scope=$scope --index=$index\n```\n\nMake sure to replace `$scope` and `$index` with the correct values. To get a list of all available indexes execute `.\/console customdimensions:info`.\n\nRemoving a Custom Dimension may take a long time as it requires MySQL schema changes. Currently, only log data is removed. Archived reports will be\nnot deleted currently.\n\n## Changelog\n\n* 0.1.4 Fix a possible JavaScript error if Transitions plugin is disabled\n* 0.1.3 Fix UI of Custom Dimensions was not working properly when not using English as language\n* 0.1.2\n  * New feature: Mark an extraction as case sensitive\n  * New feature : Show actions that had no value defined\n  * New feature : Link to Page URLs in subtables\n* 0.1.1 Bugfixes\n* 0.1.0 Initial release\n\n## Support\n\nPlease direct any feedback to [github.com\/piwik\/plugin-CustomDimensions\/issues](https:\/\/github.com\/piwik\/plugin-CustomDimensions\/issues)\n",
    "numDownloads":1753,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-CustomDimensions\/commits\/0.1.4",
    "readmeHtml":{"description":"\n\n<p>This plugins allows you to configure and track any <a href=\"https:\/\/piwik.org\/docs\/custom-dimensions\/\">Custom Dimensions<\/a>. You can configure a Custom Dimension\nby giving it a name and a scope (Action or Visit). Afterwards you will see a new menu item in the reporting area\nfor each configured dimension and be able to get its data. You can also export the report as a widget, segment by this\n dimenson, and more. For more information read the <a href=\"https:\/\/piwik.org\/docs\/custom-dimensions\/\">Custom Dimensions user guide<\/a> or have a look in the FAQ.<\/p>\n\n<p><em>Warning<\/em>: Depending on the database size of your Piwik this plugin may take a long time to install.<\/p>\n\n",
      "faq":"<p><strong>I have a large database, can I install the plugin on the command line?<\/strong><\/p>\n\n<p>Yes, this is not only possible but even recommended as the installation may take hours. To do this follow these steps:<\/p>\n\n<ul><li>Download the Plugin from <a href=\"https:\/\/plugins.piwik.org\/CustomDimensions\">https:\/\/plugins.piwik.org\/CustomDimensions<\/a><\/li>\n<li>Extract the files within the downloaded ZIP file<\/li>\n<li>Copy the <code>CustomDimensions<\/code> directory into the <code>plugins<\/code> directory of your Piwik<\/li>\n<li>Execute the command <code>.\/console plugin:activate CustomDimensions<\/code> within your Piwik directory<\/li>\n<\/ul><p><strong>Where can I manage Custom Dimensions?<\/strong><\/p>\n\n<p>Custom Dimensions can be managed by clicking on your username or user icon in the top right. There will be a menu\nitem \"Custom Dimensions\" within the \"Manage\" section of the left menu. By clicking on it you can manage Custom Dimensions.\nPlease note that the permission Admin is required in order to be able to manage them.<\/p>\n\n<p><strong>Where can I find the Id for a Custom Dimension?<\/strong><\/p>\n\n<p>You can find them by going to the \"Manage Custom Dimensions\" page in your personal area. For each dimension you will\nfind the Id in the table that lists all available Custom Dimensions.<\/p>\n\n<p><strong>How do I set a value for a dimension in the JavaScript Tracker?<\/strong><\/p>\n\n<p>Please have a look at the <a href=\"https:\/\/developer.piwik.org\/guides\/tracking-javascript-guide#custom-dimensions\">JavaScript Tracker guide for Custom Dimensions<\/a>.<\/p>\n\n<p><strong>How do I set a value for a dimension in the PHP Tracker?<\/strong><\/p>\n\n<p><code>$tracker-&gt;setCustomTrackingParameter('dimension' . $customDimensionId, $value);<\/code><\/p>\n\n<p>Please note custom tracking parameters are cleared after each tracking request. If you want to keep the same\nCustom Dimensions over all request make sure to call this method before each tracking call.<\/p>\n\n<p><strong>I have configured all available Custom Dimension slots, can I add more?<\/strong><\/p>\n\n<p>Yes, this is possible. To make a new Custom Dimension slot available execute the following command including the scope option:<\/p>\n\n<pre><code>.\/console customdimensions:add-custom-dimension --scope=action\n.\/console customdimensions:add-custom-dimension --scope=visit\n<\/code><\/pre>\n\n<p>Be aware that this can take a long time depending on the size of your database as it requires MySQL schema changes.\nYou can directly create multiple Custom Dimension slots. To do this add the option <code>--count=X<\/code>. Usually it doesn't take much\nlonger to create directly multiple new slots.<\/p>\n\n<p><strong>Is it possible to delete a Custom Dimension and all of its data?<\/strong><\/p>\n\n<p>In the UI it is only possible to deactivate a dimension. However, on the command line you can remove a Custom Dimension\nand report it's log data by executing the following console command:<\/p>\n\n<pre><code>.\/console customdimensions:remove-custom-dimension --scope=$scope --index=$index\n<\/code><\/pre>\n\n<p>Make sure to replace <code>$scope<\/code> and <code>$index<\/code> with the correct values. To get a list of all available indexes execute <code>.\/console customdimensions:info<\/code>.<\/p>\n\n<p>Removing a Custom Dimension may take a long time as it requires MySQL schema changes. Currently, only log data is removed. Archived reports will be\nnot deleted currently.<\/p>",
      "documentation":"",
      "changelog":"<ul><li>0.1.4 Fix a possible JavaScript error if Transitions plugin is disabled<\/li>\n<li>0.1.3 Fix UI of Custom Dimensions was not working properly when not using English as language<\/li>\n<li>0.1.2\n\n<ul><li>New feature: Mark an extraction as case sensitive<\/li>\n<li>New feature : Show actions that had no value defined<\/li>\n<li>New feature : Link to Page URLs in subtables<\/li>\n<\/ul><\/li>\n<li>0.1.1 Bugfixes<\/li>\n<li>0.1.0 Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/CustomDimensions\/download\/0.1.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"CustomOptOut",
  "displayName":"Custom Opt Out",
  "owner":"Zeichen32",
  "description":"Create your own opt-out iframe css styles",
  "homepage":"https:\/\/github.com\/Zeichen32\/PiwikCustomOptOut",
  "createdDateTime":"2014-12-23 01:06:54",
  "donate":{"paypal":"test2@example.com",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":["Opt-Out",
    "CSS"],"basePrice":0,"authors":[{"name":"Jens Averkamp",
    "email":"test6@example.com",
    "homepage":"https:\/\/github.com\/Zeichen32"}],"repositoryUrl":"https:\/\/github.com\/Zeichen32\/PiwikCustomOptOut",
  "lastUpdated":"2014-12-23 01:22:19",
  "latestVersion":"0.1.4",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/CustomOptOut\/images\/CustomOptOut.png"],"previews":[],"activity":{"numCommits":"13",
    "numContributors":"5",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.3",
    "release":"2014-12-23 01:06:54",
    "requires":{"piwik":">=2.0.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/Zeichen32\/PiwikCustomOptOut\/commits\/0.1.3",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomOptOut\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2014-12-23 01:22:19",
    "requires":{"piwik":">=2.0.0",
      "php":">=5.3.0"},"readme":"# Custom Opt-Out Styles Piwik Plugin\n\n## Description\n\nAdd a new admin tab, to change the opt-out CSS Styles for each website.\n\n## Requirements\n\n+ Piwik >= 2.0.0\n\n## Changelog\n\n#### CustomOptOut 0.1.4:\n* Issue #3 Code updated to support Piwik 2.1 and newer\n* Issue #2 Allow relative urls in css file field\n\n#### CustomOptOut 0.1.3:\n* Issue #1 Added a p-tag around the opt-out text for better markup and easier styling. (christianseel)\n\n#### CustomOptOut 0.1.2:\n* Fix wrong css escaping\n\n#### CustomOptOut 0.1.1:\n* Initial Version\n\n\n## Authors\n\n**Jens Averkamp**\n\n+ [https:\/\/github.com\/Zeichen32](https:\/\/github.com\/Zeichen32)\n\n## Support\n**Please direct any feedback to [https:\/\/github.com\/Zeichen32\/PiwikCustomOptOut](https:\/\/github.com\/Zeichen32\/PiwikCustomOptOut)**\n\n## Copyright and license\n\nReleased under the GPL v3 (or later) license, see [misc\/gpl-3.0.txt](misc\/gpl-3.0.txt)",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/Zeichen32\/PiwikCustomOptOut\/commits\/0.1.4",
    "readmeHtml":{"description":"\n\n<p>Add a new admin tab, to change the opt-out CSS Styles for each website.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<h4>CustomOptOut 0.1.4:<\/h4>\n\n<ul><li>Issue #3 Code updated to support Piwik 2.1 and newer<\/li>\n<li>Issue #2 Allow relative urls in css file field<\/li>\n<\/ul><h4>CustomOptOut 0.1.3:<\/h4>\n\n<ul><li>Issue #1 Added a p-tag around the opt-out text for better markup and easier styling. (christianseel)<\/li>\n<\/ul><h4>CustomOptOut 0.1.2:<\/h4>\n\n<ul><li>Fix wrong css escaping<\/li>\n<\/ul><h4>CustomOptOut 0.1.1:<\/h4>\n\n<ul><li>Initial Version<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/CustomOptOut\/download\/0.1.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"CustomTrackerJs",
  "displayName":"Custom Tracker Js",
  "owner":"PiwikPRO",
  "description":"Lets Super Users and other plugins customise the piwik.js tracker file.",
  "homepage":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs",
  "createdDateTime":"2014-10-14 04:56:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs",
  "lastUpdated":"2016-04-12 16:00:04",
  "latestVersion":"1.1.2",
  "numDownloads":4376,"screenshots":[],"previews":[],"activity":{"numCommits":"33",
    "numContributors":"5",
    "lastCommitDate":"2016-04-15 22:59:15"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.2",
    "release":"2014-10-14 04:56:03",
    "requires":{"piwik":">=2.8.0-b4"},"readme":"",
    "numDownloads":64,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomTrackerJs\/download\/1.0.2"},{"name":"1.0.3",
    "release":"2014-10-15 21:58:03",
    "requires":{"piwik":">=2.8.0-b4"},"readme":"",
    "numDownloads":3554,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomTrackerJs\/download\/1.0.3"},{"name":"1.1.0",
    "release":"2016-03-08 14:28:03",
    "requires":{"piwik":">=2.8.0-b4"},"readme":"",
    "numDownloads":315,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomTrackerJs\/download\/1.1.0"},{"name":"1.1.1",
    "release":"2016-04-12 14:30:04",
    "requires":{"piwik":">=2.8.0-b4"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs\/commits\/v0.0.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/CustomTrackerJs\/download\/1.1.1"},{"name":"1.1.2",
    "release":"2016-04-12 16:00:04",
    "requires":{"piwik":">=2.8.0-b4"},"readme":"# Piwik CustomTrackerJs Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-CustomTrackerJs.svg?branch=master)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-CustomTrackerJs)\n\n## Description\n\nThe `CustomTrackerJs` plugin lets the super users or other plugins add custom code to the Piwik Javascript Tracker.\n\n## Usage\n\n### Super users\n\nSuper users can set the Javascript code they want to add to the `piwik.js` file in `Settings > Plugin settings`.\n\nAny code added in the *Javascript code* textbox will be appended to `piwik.js` by a scheduled task. Be very careful\nas to write valid Javascript code since invalid code can break the tracker.\n\n### Other plugins\n\nPlugins can make use of the `CustomTrackerJs.getTrackerJsAdditions` event to register Javascript code to add to\nthe tracker.\n\nFor example this will add a `console.log(\"Hello world!\");` line to the tracker:\n\n```php\nclass MyPlugin extends \\Piwik\\Plugin\n{\n    public function getListHooksRegistered()\n    {\n        return array(\n            'CustomTrackerJs.getTrackerJsAdditions' => 'getTrackerJsAdditions',\n        );\n    }\n\n    public function getTrackerJsAdditions(&$code)\n    {\n        $code .= PHP_EOL . 'console.log(\"Hello world!\");';\n    }\n}\n```\n\n## Changelog\n\n* 1.1.2\n    - Marketplace release\n* 1.1.0\n    - PPCDEV-2609 Compatibility with Piwik 2.16.0\n\n## Support\n\nPlease contact us at contact@piwik.pro in case you are facing a bug.\n\n\nPlugin created and maintained by [Piwik PRO](http:\/\/piwik.pro\/).\n",
    "numDownloads":442,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-CustomTrackerJs\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>The <code>CustomTrackerJs<\/code> plugin lets the super users or other plugins add custom code to the Piwik Javascript Tracker.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>1.1.2\n\n<ul><li>Marketplace release<\/li>\n<\/ul><\/li>\n<li>1.1.0\n\n<ul><li>PPCDEV-2609 Compatibility with Piwik 2.16.0<\/li>\n<\/ul><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/CustomTrackerJs\/download\/1.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ExcludeByDDNS",
  "displayName":"Exclude By DDNS",
  "owner":"sgiehl",
  "description":"This plugin allows you to dynamically exclude a IP using DDNS update",
  "homepage":"http:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS",
  "createdDateTime":"2015-02-08 22:10:03",
  "donate":{"paypal":"stefangiehl@web.de",
    "flattr":"https:\/\/flattr.com\/thing\/2578144\/sgiehl",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS",
  "lastUpdated":"2016-05-08 22:10:03",
  "latestVersion":"0.5.0",
  "numDownloads":3069,"screenshots":[],"previews":[],"activity":{"numCommits":"44",
    "numContributors":"1",
    "lastCommitDate":"2016-05-08 22:29:45"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1",
    "release":"2015-02-08 22:10:03",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":149,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.1"},{"name":"0.1.1",
    "release":"2015-02-24 19:52:03",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":68,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.1.1"},{"name":"0.2.0",
    "release":"2015-03-01 11:42:03",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":227,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2015-03-28 15:32:03",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":397,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.2.1"},{"name":"0.2.2",
    "release":"2015-06-01 07:08:09",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":341,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/1.0.8",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.2.2"},{"name":"0.3.0",
    "release":"2015-07-28 20:36:02",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":4,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.3.0"},{"name":"0.3.1",
    "release":"2015-07-28 22:30:03",
    "requires":{"piwik":">=2.9.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":157,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.3.1"},{"name":"0.4.0",
    "release":"2015-08-15 18:44:03",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":1529,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.4.0"},{"name":"0.5.0",
    "release":"2016-05-08 22:10:03",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.3"},"readme":"# Piwik Exclude IP By DDNS\n\n[![Build Status](https:\/\/travis-ci.org\/sgiehl\/piwik-plugin-ExcludeByDDNS.png?branch=master)](https:\/\/travis-ci.org\/sgiehl\/piwik-plugin-ExcludeByDDNS)\n[![Flattr this git repo](http:\/\/api.flattr.com\/button\/flattr-badge-large.png)](https:\/\/flattr.com\/submit\/auto?user_id=sgiehl&url=https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS&title=Piwik Plugin ExcludeByDDNS=&tags=github&category=software)\n\n## Description\n\nThis plugin allows the Piwik users to dynamically exclude their IP address using DDNS update.\n\n### Requirements\n\n[Piwik](https:\/\/github.com\/piwik\/piwik) 2.4.0 or higher is required.\n\n### Features\n\n- Exclude one IP for each Piwik user \n- Exclude and IP using an already updated hostname\n\n## FAQ\n\n__Which update method should i use, _DDNS Update_ or _DDNS Hostname_?__\n\nIf available, ___DDNS Update___ is recommended. This method is a bit more complicated to set up, but it leads to immediately updated IP's, as the client will trigger the update whenever a new IP is assigned.\nBut it may not be viable for all users, eg. \n* Not all DDNS clients allow custom update-URL's.\n* The client may be already serving another Server and have no ability to talk to multiple Servers at the same time.\n\nSo, the ___DDNS Hostname___ can be an alternative. Use a DDNS Service that is compatible with your client and enter the hostname from there to have the plugin resolve your dynamic IP. The downside: Updating happens via a sheduled task every hour, so there might be small windows with the new IP still being tracked, but not the old one.\n\n__What data do I need to set for DDNS Update__\n\nYou need to set a custom URL to be triggered for an update.\nYour personal update-URL is shown in your piwik installation (user-menu > Personal > DDNS Settings).\n\nThe URL has the following scheme:\n```\nhttp{s}:\/\/{piwik.url}\/index.php?module=ExcludeByDDNS&action=update&token_auth={token_auth}\n```\n\n- {s} Use HTTPS if available.\n- {piwik.url}: The URL to your piwik installation.\n- {token_auth}: Your API auth token (user-menu > Platform > API).\n\nThere is no need to set user, password or domain name.\n\n## Changelog\n\n- Version 0.4.0 - Compatibility for Piwik > 2.4.0\n- Version 0.3.0 - Various improvements and translations\n- Version 0.2.0 - Beta Release\n- Version 0.1.0 - Alpha Release\n\n## Support\n\nPlease direct any feedback to [stefan@piwik.org](mailto:stefan@piwik.org)\n\n## Contribute\n\nFeel free to create issues and pull requests.\n\n## License\n\nGPLv3 or later\n\n",
    "numDownloads":197,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ExcludeByDDNS\/commits\/1.1.0",
    "readmeHtml":{"description":"\n\n<p>This plugin allows the Piwik users to dynamically exclude their IP address using DDNS update.<\/p>\n\n<h3>Requirements<\/h3>\n\n<p><a href=\"https:\/\/github.com\/piwik\/piwik\">Piwik<\/a> 2.4.0 or higher is required.<\/p>\n\n<h3>Features<\/h3>\n\n<ul><li>Exclude one IP for each Piwik user <\/li>\n<li>Exclude and IP using an already updated hostname<\/li>\n<\/ul>",
      "faq":"<p><strong>Which update method should i use, <em>DDNS Update<\/em> or <em>DDNS Hostname<\/em>?<\/strong><\/p>\n\n<p>If available, <strong><em>DDNS Update<\/em><\/strong> is recommended. This method is a bit more complicated to set up, but it leads to immediately updated IP's, as the client will trigger the update whenever a new IP is assigned.\nBut it may not be viable for all users, eg. \n* Not all DDNS clients allow custom update-URL's.\n* The client may be already serving another Server and have no ability to talk to multiple Servers at the same time.<\/p>\n\n<p>So, the <strong><em>DDNS Hostname<\/em><\/strong> can be an alternative. Use a DDNS Service that is compatible with your client and enter the hostname from there to have the plugin resolve your dynamic IP. The downside: Updating happens via a sheduled task every hour, so there might be small windows with the new IP still being tracked, but not the old one.<\/p>\n\n<p><strong>What data do I need to set for DDNS Update<\/strong><\/p>\n\n<p>You need to set a custom URL to be triggered for an update.\nYour personal update-URL is shown in your piwik installation (user-menu &gt; Personal &gt; DDNS Settings).<\/p>\n\n<p>The URL has the following scheme:<\/p>\n\n<pre><code>http{s}:\/\/{piwik.url}\/index.php?module=ExcludeByDDNS&amp;action=update&amp;token_auth={token_auth}\n<\/code><\/pre>\n\n<ul><li>{s} Use HTTPS if available.<\/li>\n<li>{piwik.url}: The URL to your piwik installation.<\/li>\n<li>{token_auth}: Your API auth token (user-menu &gt; Platform &gt; API).<\/li>\n<\/ul><p>There is no need to set user, password or domain name.<\/p>",
      "documentation":"",
      "changelog":"<ul><li>Version 0.4.0 - Compatibility for Piwik &gt; 2.4.0<\/li>\n<li>Version 0.3.0 - Various improvements and translations<\/li>\n<li>Version 0.2.0 - Beta Release<\/li>\n<li>Version 0.1.0 - Alpha Release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/ExcludeByDDNS\/download\/0.5.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"FeedAnnotation",
  "displayName":"Feed Annotation",
  "owner":"halfdan",
  "description":"Plugin to automatically create Annotations by polling a feed (Atom\/RSS)",
  "homepage":"http:\/\/github.com\/halfdan\/piwik-feedannotation-plugin",
  "createdDateTime":"2014-12-23 00:39:30",
  "donate":{},"support":[],"isTheme":false,"keywords":["rss",
    "atom",
    "annotation",
    "feed"],"basePrice":0,"authors":[{"name":"Fabian Becker",
    "email":"test8@example.com",
    "homepage":"http:\/\/geekproject.eu"}],"repositoryUrl":"https:\/\/github.com\/halfdan\/piwik-feedannotation-plugin",
  "lastUpdated":"2014-12-23 00:39:30",
  "latestVersion":"0.9.5",
  "numDownloads":0,"screenshots":[],"previews":[],"activity":{"numCommits":"26",
    "numContributors":"1",
    "lastCommitDate":"1970-01-01 00:33:33"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.9.5",
    "release":"2014-12-23 00:39:30",
    "requires":{"piwik":">=2.0.0"},"readme":"# Piwik FeedAnnotation Plugin\n\n## Description \n\nThis is a plugin for the Open Source Web Analytics platform Piwik. It allows you to automatically fetch RSS\/Atom-Feeds from your website and create new Annotations from feed entries. \n\nSince the \"Annotations\" plugin was introduced in Piwik 1.10, this plugin requires at least Piwik 1.10.\n\n![Annotations in Piwik](http:\/\/cdn.geekmonkey.org\/assets\/files\/000\/000\/038\/screen\/annotations-view.png)\n\n## Documentation\n\n1. Clone the plugin into the plugins directory of your Piwik installation.\n\n   ```\n   cd plugins\/\n   git clone https:\/\/github.com\/halfdan\/piwik-feedannotation-plugin.git FeedAnnotation\n   ```\n\n2. Login as superuser into your Piwik installation and activate the plugin under Settings -> Plugins\n\n3. You can add new feeds for sites you have admin access to under Settings -> Feed Annotations\n\nFeeds are fetched once a day using \"scheduled tasks\". After adding a feed you can manually force the plugin to process your feed by clicking the \"Process now\" link.\n\n## Contribute \n\nIf you are interested in contributing to this plugin, feel free to send pull requests!\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/halfdan\/piwik-feedannotation-plugin\/commits\/v0.9.5",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for the Open Source Web Analytics platform Piwik. It allows you to automatically fetch RSS\/Atom-Feeds from your website and create new Annotations from feed entries.<\/p>\n\n<p>Since the \"Annotations\" plugin was introduced in Piwik 1.10, this plugin requires at least Piwik 1.10.<\/p>\n\n<p><img src=\"http:\/\/cdn.geekmonkey.org\/assets\/files\/000\/000\/038\/screen\/annotations-view.png\" alt=\"annotations-view.png\" \/><\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/FeedAnnotation\/download\/0.9.5"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"FlagCounter",
  "displayName":"Flag Counter",
  "owner":"sgiehl",
  "description":"This plugin allows you to include a simple statistic in your website showing the flags and hits of the countries your visitors came from",
  "homepage":"http:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter",
  "createdDateTime":"2015-01-05 23:22:04",
  "donate":{"paypal":"stefangiehl@web.de",
    "flattr":"https:\/\/flattr.com\/thing\/2578144\/sgiehl",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter",
  "lastUpdated":"2015-08-15 18:54:04",
  "latestVersion":"0.4.0",
  "numDownloads":4519,"screenshots":[],"previews":[],"activity":{"numCommits":"29",
    "numContributors":"1",
    "lastCommitDate":"2016-01-19 20:18:45"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1",
    "release":"2015-01-05 23:22:04",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":351,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter\/commits\/1.0.6",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/FlagCounter\/download\/0.1"},{"name":"0.2",
    "release":"2015-02-08 12:22:04",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":523,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/FlagCounter\/download\/0.2"},{"name":"0.3",
    "release":"2015-04-06 11:44:03",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":155,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/FlagCounter\/download\/0.3"},{"name":"0.3.1",
    "release":"2015-04-15 20:06:03",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":487,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/FlagCounter\/download\/0.3.1"},{"name":"0.3.2",
    "release":"2015-06-01 07:10:04",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":681,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/FlagCounter\/download\/0.3.2"},{"name":"0.4.0",
    "release":"2015-08-15 18:54:04",
    "requires":{"piwik":">=2.4.0",
      "php":">=5.3.0"},"readme":"# Piwik Flag Counter Plugin\n\n[![Flattr this git repo](http:\/\/api.flattr.com\/button\/flattr-badge-large.png)](https:\/\/flattr.com\/submit\/auto?user_id=sgiehl&url=https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter&title=Piwik Plugin FlagCounter=&tags=github&category=software) \n\n\n## Description\n\nThis plugin allows you to include a small image or iframe in you website displaying the flags and total hits of the countries your website visitors came from\n\nPlease keep in mind that everyone will be able to see that kind of statistic as this plugin does not consider the access rights.\n\n### Requirements\n\n[Piwik](https:\/\/github.com\/piwik\/piwik) 2.0.4 or higher is required.\nGD library including ttf support\n\n### Features\n\n- Configurable with following parameters:\n  - idSite: Website to display\n  - period: period to display\n  - date: date to display\n  - cols: count of columns to display (default 2)\n  - rows: count of rows to display (default 5)\n  - showflag: show flags (default 1)\n  - showcountryode: show country codes (default 0)\n  - font: font family to use\n  - fontsize: font size to use (between 2 and 30; default 12)\n  - fontcolor: font color to use (rgb value; default 0,0,0)\n- Generates a transparent PNG image showing the flag icons and their total hits\n- Generates simple HTML to be included as iframe\n\n## FAQ\n\n__The image is not displayed. What can I do?__\n\nMaybe you have some kind of access restriction for your Piwik like http auth. The Url needs to be public accessible, or at least accessible to those, who should be able to see the counter.\n\n__How can I display the counter for all data in the past__\n\nTo do that, set period to ```range``` and date to something like ```1992-01-01,today```.\n\nThe full URL for the image would then look like:\n```\nhttp:\/\/piwik.url\/index.php?module=FlagCounter&action=image&idSite=1&period=range&date=1992-01-01,today&cols=2&rows=6\n``` \n\n__Can I use a custom font?__\n\nCurrently all ttf fonts located in the ```fonts``` directory within this plugin are available for usage. If you place a new font there, you should be able to use it.\n\n\n## Changelog\n\n- Version 0.1 - Alpha Release\n- Version 0.2 \n  - improved image generation (automatic spacing between items)\n  - possibility to show country codes besides or instead of the flags\n- Version 0.3\n  - added ability to choose a font family, size & color\n\n## Support\n\nPlease direct any feedback to [stefan@piwik.org](mailto:stefan@piwik.org)\n\n## Contribute\n\nFeel free to create issues and pull requests.\n\n## License\n\nGPLv3 or later\n\nNote: The fonts bundled with this plugin are under the following licenses\n- OpenSans: Apache license\n- Roboto: Apache license\n- Raleway: SIL Open Font License\n- Cantarell: SIL Open Font License\n\n",
    "numDownloads":2322,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-FlagCounter\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This plugin allows you to include a small image or iframe in you website displaying the flags and total hits of the countries your website visitors came from<\/p>\n\n<p>Please keep in mind that everyone will be able to see that kind of statistic as this plugin does not consider the access rights.<\/p>\n\n<h3>Requirements<\/h3>\n\n<p><a href=\"https:\/\/github.com\/piwik\/piwik\">Piwik<\/a> 2.0.4 or higher is required.\nGD library including ttf support<\/p>\n\n<h3>Features<\/h3>\n\n<ul><li>Configurable with following parameters:\n\n<ul><li>idSite: Website to display<\/li>\n<li>period: period to display<\/li>\n<li>date: date to display<\/li>\n<li>cols: count of columns to display (default 2)<\/li>\n<li>rows: count of rows to display (default 5)<\/li>\n<li>showflag: show flags (default 1)<\/li>\n<li>showcountryode: show country codes (default 0)<\/li>\n<li>font: font family to use<\/li>\n<li>fontsize: font size to use (between 2 and 30; default 12)<\/li>\n<li>fontcolor: font color to use (rgb value; default 0,0,0)<\/li>\n<\/ul><\/li>\n<li>Generates a transparent PNG image showing the flag icons and their total hits<\/li>\n<li>Generates simple HTML to be included as iframe<\/li>\n<\/ul>",
      "faq":"<p><strong>The image is not displayed. What can I do?<\/strong><\/p>\n\n<p>Maybe you have some kind of access restriction for your Piwik like http auth. The Url needs to be public accessible, or at least accessible to those, who should be able to see the counter.<\/p>\n\n<p><strong>How can I display the counter for all data in the past<\/strong><\/p>\n\n<p>To do that, set period to <code>range<\/code> and date to something like <code>1992-01-01,today<\/code>.<\/p>\n\n<p>The full URL for the image would then look like:<\/p>\n\n<pre><code>http:\/\/piwik.url\/index.php?module=FlagCounter&amp;action=image&amp;idSite=1&amp;period=range&amp;date=1992-01-01,today&amp;cols=2&amp;rows=6\n<\/code><\/pre>\n\n<p><strong>Can I use a custom font?<\/strong><\/p>\n\n<p>Currently all ttf fonts located in the <code>fonts<\/code> directory within this plugin are available for usage. If you place a new font there, you should be able to use it.<\/p>",
      "documentation":"",
      "changelog":"<ul><li>Version 0.1 - Alpha Release<\/li>\n<li>Version 0.2 \n\n<ul><li>improved image generation (automatic spacing between items)<\/li>\n<li>possibility to show country codes besides or instead of the flags<\/li>\n<\/ul><\/li>\n<li>Version 0.3\n\n<ul><li>added ability to choose a font family, size &amp; color<\/li>\n<\/ul><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/FlagCounter\/download\/0.4.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"FreeMobileMessaging",
  "displayName":"Free Mobile Messaging",
  "owner":"apapillon",
  "description":"Mobile Messaging Plugin: Free Mobile support",
  "homepage":"https:\/\/github.com\/apapillon\/piwik-freemobilesmsprovider-plugin",
  "createdDateTime":"2015-11-29 23:10:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/apapillon\/piwik-freemobilesmsprovider-plugin",
  "lastUpdated":"2015-11-29 23:10:04",
  "latestVersion":"1.0.0",
  "numDownloads":1212,"screenshots":[],"previews":[],"activity":{"numCommits":"1",
    "numContributors":"1",
    "lastCommitDate":"2015-11-29 23:09:07"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.0",
    "release":"2015-11-29 23:10:04",
    "requires":{"piwik":">=2.15.1-b2"},"readme":"# Piwik FreeMobileSMSProvider Plugin \n\n## Description\n\nThis is a plugin for the Open Source Web Analytics platform [Piwik][1]. It \nadd Free Mobile SMS provider support to MobileMessaging plugin.\n\n## Installation\n\nInstall the prerequiste MobileMessagin plugin via MarketPlace.\n\nSee http:\/\/piwik.org\/faq\/plugins\/#faq_21\n\n## FAQ\n\n\n## Changelog\n\n__1.0.0__\n* Initial release\n\n## License\n\nGPL v3\n\n## Support\n\nPlease direct any feedback to: \n\n* [https:\/\/github.com\/apapillon\/piwik-freemobilesmsprovider-plugin\/issues][2]\n\n[1]: http:\/\/piwik.org\n[2]: https:\/\/github.com\/apapillon\/piwik-freemobilesmsprovider-plugin\/issues\n",
    "numDownloads":1212,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/apapillon\/piwik-freemobilesmsprovider-plugin\/commits\/1.0",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for the Open Source Web Analytics platform <a href=\"http:\/\/piwik.org\">Piwik<\/a>. It \nadd Free Mobile SMS provider support to MobileMessaging plugin.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<p><strong>1.0.0<\/strong>\n* Initial release<\/p>"},"download":"\/api\/2.0\/plugins\/FreeMobileMessaging\/download\/1.0.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"GoogleAuthenticator",
  "displayName":"Google Authenticator",
  "owner":"sgiehl",
  "description":"Adds Google Authenticator Two Factor Auth to Piwik",
  "homepage":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator",
  "createdDateTime":"2015-07-21 20:46:05",
  "donate":{"paypal":"stefangiehl@web.de",
    "flattr":"https:\/\/flattr.com\/thing\/4453253\/sgiehlpiwik-plugin-GoogleAuthenticator-on-GitHub",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator",
  "lastUpdated":"2015-08-15 15:26:03",
  "latestVersion":"0.1.0",
  "numDownloads":2267,"screenshots":[],"previews":[],"activity":{"numCommits":"42",
    "numContributors":"1",
    "lastCommitDate":"2016-04-30 14:40:55"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.0.1",
    "release":"2015-07-21 20:46:05",
    "requires":{"piwik":">=2.14.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":47,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GoogleAuthenticator\/download\/0.0.1"},{"name":"0.0.2",
    "release":"2015-07-26 10:56:04",
    "requires":{"piwik":">=2.14.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":26,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GoogleAuthenticator\/download\/0.0.2"},{"name":"0.0.3",
    "release":"2015-07-27 20:44:03",
    "requires":{"piwik":">=2.14.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":19,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GoogleAuthenticator\/download\/0.0.3"},{"name":"0.0.4",
    "release":"2015-07-28 13:18:03",
    "requires":{"piwik":">=2.14.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":167,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GoogleAuthenticator\/download\/0.0.4"},{"name":"0.1.0",
    "release":"2015-08-15 15:26:03",
    "requires":{"piwik":">=2.14.0",
      "php":">=5.4.0"},"readme":"# Piwik Google Authenticator Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/sgiehl\/piwik-plugin-GoogleAuthenticator.png?branch=master)](https:\/\/travis-ci.org\/sgiehl\/piwik-plugin-GoogleAuthenticator)\n[![Flattr this git repo](http:\/\/api.flattr.com\/button\/flattr-badge-large.png)](https:\/\/flattr.com\/submit\/auto?user_id=sgiehl&url=https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator&title=Piwik Plugin GoogleAuthenticator=&tags=github&category=software) \n\n\n## Description\n\nAdds a userbased possibility to use Google Authenticator 2FA as additional login security.\nEach use can enable\/disable this feature in his account settings.\n\nThis Plugin is based on the original Piwik Login plugin and needs this one to be installed but not active.\n\nATTENTION: Activating Google Authenticator for an account, also requires an auth code for direct API requests with the users token auth. Use ```&auth_code={authcode}``` to do that.\n\n### Requirements\n\n[Piwik](https:\/\/github.com\/piwik\/piwik) 2.14.0 or higher is required.\n\n### Features\n\n- Userbased activation of Google Authenticator 2FA\n\n## Changelog\n\n- 0.1.0 Added possibility to define title and description for Google Authenticator app\n- 0.0.4 fixes password reset link\n- 0.0.3 small improvements\n- 0.0.2 Added first translations\n- 0.0.1 Initial release\n\n## Support\n\nPlease direct any feedback to [stefan@piwik.org](mailto:stefan@piwik.org)\n\n## Contribute\n\nFeel free to create issues and pull requests.\n\n## License\n\nGPLv3 or later\n\nThe used library [PHPGangsta\/GoogleAuthenticator](https:\/\/github.com\/PHPGangsta\/GoogleAuthenticator) is licensed under BSD\n\n",
    "numDownloads":2008,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-GoogleAuthenticator\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Adds a userbased possibility to use Google Authenticator 2FA as additional login security.\nEach use can enable\/disable this feature in his account settings.<\/p>\n\n<p>This Plugin is based on the original Piwik Login plugin and needs this one to be installed but not active.<\/p>\n\n<p>ATTENTION: Activating Google Authenticator for an account, also requires an auth code for direct API requests with the users token auth. Use <code>&amp;auth_code={authcode}<\/code> to do that.<\/p>\n\n<h3>Requirements<\/h3>\n\n<p><a href=\"https:\/\/github.com\/piwik\/piwik\">Piwik<\/a> 2.14.0 or higher is required.<\/p>\n\n<h3>Features<\/h3>\n\n<ul><li>Userbased activation of Google Authenticator 2FA<\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>0.1.0 Added possibility to define title and description for Google Authenticator app<\/li>\n<li>0.0.4 fixes password reset link<\/li>\n<li>0.0.3 small improvements<\/li>\n<li>0.0.2 Added first translations<\/li>\n<li>0.0.1 Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/GoogleAuthenticator\/download\/0.1.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"GrabGravatar",
  "displayName":"Grab Gravatar",
  "owner":"alnoorp",
  "description":"Adds a profile photo from Gravatar based on the email address stored in the User Id field.",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2015-03-18 04:20:04",
  "donate":{"paypal":"alnoorp@gmail.com",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/alnoorp\/GrabGravatar",
  "lastUpdated":"2015-07-24 14:26:11",
  "latestVersion":"0.2.0",
  "numDownloads":2018,"screenshots":[],"previews":[],"activity":{"numCommits":"15",
    "numContributors":"1",
    "lastCommitDate":"2015-03-22 04:22:05"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-03-18 04:20:04",
    "requires":{"piwik":">=2.11.2"},"readme":"",
    "numDownloads":6,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/alnoorp\/GrabGravatar\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GrabGravatar\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-07-24 14:26:04",
    "requires":{"piwik":">=2.11.2"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/alnoorp\/GrabGravatar\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GrabGravatar\/download\/0.1.1"},{"name":"0.1.11",
    "release":"2015-07-24 14:26:07",
    "requires":{"piwik":">=2.11.2"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/alnoorp\/GrabGravatar\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/GrabGravatar\/download\/0.1.11"},{"name":"0.2.0",
    "release":"2015-07-24 14:26:11",
    "requires":{"piwik":">=2.11.2"},"readme":"# Piwik GrabGravatar Plugin\n\n## Description\n\nA Piwik plugin that adds a profile photo from Gravatar based on the email address stored in the User Id field.\n\n## Installation\n\nInstall it via Piwik Marketplace\n\n## FAQ\n\n__What information do I need to make this plugin work?__\nMake sure you are capturing the email address for your visitors in the User Id field.\n\n__Why do some of my visitors just display the Gravatar logo instead of a photo?__\nEither there is no email address associated with the visitor or they do not have a Gravatar set up at gravatar.com\n\n## Changelog\n\n* 0.1.11 Fixed screenshot filename\n* 0.1.1 Add screenshots\n* 0.1.0 First beta\n\n## License\n\nGPL v3 or later\n\n## Support\n\nPlease direct any feedback to <alnoorp@gmail.com>\n",
    "numDownloads":2012,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/alnoorp\/GrabGravatar\/commits\/v0.1.2",
    "readmeHtml":{"description":"\n\n<p>A Piwik plugin that adds a profile photo from Gravatar based on the email address stored in the User Id field.<\/p>\n\n",
      "faq":"<p><strong>What information do I need to make this plugin work?<\/strong>\nMake sure you are capturing the email address for your visitors in the User Id field.<\/p>\n\n<p><strong>Why do some of my visitors just display the Gravatar logo instead of a photo?<\/strong>\nEither there is no email address associated with the visitor or they do not have a Gravatar set up at gravatar.com<\/p>",
      "documentation":"",
      "changelog":"<ul><li>0.1.11 Fixed screenshot filename<\/li>\n<li>0.1.1 Add screenshots<\/li>\n<li>0.1.0 First beta<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/GrabGravatar\/download\/0.2.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"InterSites",
  "displayName":"Inter Sites",
  "owner":"PiwikPRO",
  "description":"Analyze how many visitors navigate between your websites.",
  "homepage":"http:\/\/piwik.pro",
  "createdDateTime":"2014-09-14 04:10:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites",
  "lastUpdated":"2016-03-08 14:16:03",
  "latestVersion":"0.4.0",
  "numDownloads":7766,"screenshots":[],"previews":[],"activity":{"numCommits":"69",
    "numContributors":"6",
    "lastCommitDate":"2016-04-15 22:58:13"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-09-14 04:10:03",
    "requires":{"piwik":">=2.7.0-b3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-09-14 04:40:03",
    "requires":{"piwik":">=2.7.0-b3"},"readme":"",
    "numDownloads":1138,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-12-08 02:56:04",
    "requires":{"piwik":">=2.10.0-b6"},"readme":"",
    "numDownloads":951,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.1.2"},{"name":"0.2.0",
    "release":"2015-03-04 13:02:04",
    "requires":{"piwik":">=2.10.0"},"readme":"",
    "numDownloads":126,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2015-03-05 08:36:03",
    "requires":{"piwik":">=2.10.0"},"readme":"",
    "numDownloads":1472,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.2.1"},{"name":"0.2.3",
    "release":"2015-07-29 11:10:03",
    "requires":{"piwik":">=2.11.0"},"readme":"",
    "numDownloads":1043,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.2.3"},{"name":"0.3.0",
    "release":"2015-10-21 23:18:03",
    "requires":{"piwik":">=2.11.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.3.0"},{"name":"0.3.1",
    "release":"2015-10-21 23:24:03",
    "requires":{"piwik":">=2.15.0-rc4"},"readme":"",
    "numDownloads":372,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.3.1"},{"name":"0.3.2",
    "release":"2015-11-11 20:10:03",
    "requires":{"piwik":">=2.15.0"},"readme":"",
    "numDownloads":1597,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.3.2"},{"name":"0.4.0",
    "release":"2016-03-08 14:16:03",
    "requires":{"piwik":">=2.16.0"},"readme":"InterSites\n==========\n\nMaster: [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-InterSites.svg?branch=master)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-InterSites)\nDevelop: [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-InterSites.svg?branch=develop)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-InterSites)\n\n**Analyze how visitors navigate between your websites.**\n\n## Description\n\nMeasures number of visits and unique visitors that have navigated across two or three specific websites.\n\n_(Unique user is determined across websites using the fingerprint config\\_id stored in the DB.)_\n\n## Features\n\n### See how many visitors visited more than one of your websites.\n\nTo access this functionality, navigate to the All Websites dashboard. Here there will be a new link that says _Number of visitors who viewed several websites_. Click this link and a dialog will display that will allow you to get visitor metrics for many sites.\n\nComparison of visits is done in dates for the UTC time, not for the site specific time.\n\n\n## Changelog\n * 0.4.0\n   - PPCDEV-2609 Compatibility with Piwik 2.16.0\n * 0.3.2\n    - Changed minimum required Piwik to 2.15.0\n * 0.3.1\n    - Bumping minimum required Piwik.\n * 0.3.0\n    - Compatibility w\/ Piwik 2.15.\n * 0.2.2:\n    - Fixed bug with day period\n    - Added tests for day and month period\n    - Fixed Site names display, as they were displayed as HTML entities\n * 0.2.1: Market release\n * 0.2.0: Introduced composer.json file\n * 0.1.2: Compatibility with Piwik 2.10.0 (Notification will explain that config setting `enable_fingerprinting_across_websites=1` is required)\n * 0.1.0: Initial release\n",
    "numDownloads":1067,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-InterSites\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Measures number of visits and unique visitors that have navigated across two or three specific websites.<\/p>\n\n<p><em>(Unique user is determined across websites using the fingerprint config_id stored in the DB.)<\/em><\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>0.4.0\n\n<ul><li>PPCDEV-2609 Compatibility with Piwik 2.16.0<\/li>\n<\/ul><\/li>\n<li>0.3.2\n\n<ul><li>Changed minimum required Piwik to 2.15.0<\/li>\n<\/ul><\/li>\n<li>0.3.1\n\n<ul><li>Bumping minimum required Piwik.<\/li>\n<\/ul><\/li>\n<li>0.3.0\n\n<ul><li>Compatibility w\/ Piwik 2.15.<\/li>\n<\/ul><\/li>\n<li>0.2.2:\n\n<ul><li>Fixed bug with day period<\/li>\n<li>Added tests for day and month period<\/li>\n<li>Fixed Site names display, as they were displayed as HTML entities<\/li>\n<\/ul><\/li>\n<li>0.2.1: Market release<\/li>\n<li>0.2.0: Introduced composer.json file<\/li>\n<li>0.1.2: Compatibility with Piwik 2.10.0 (Notification will explain that config setting <code>enable_fingerprinting_across_websites=1<\/code> is required)<\/li>\n<li>0.1.0: Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/InterSites\/download\/0.4.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"IntranetGeoIP",
  "displayName":"Intranet Geo IP",
  "owner":"ThaDafinser",
  "description":"Piwik plugin to locate all locale data of a user based on the IP address\/subnetwork (country, region, city, latitude, longitude, provider, ...)",
  "homepage":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP",
  "createdDateTime":"2014-06-12 08:04:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP",
  "lastUpdated":"2015-07-13 10:54:03",
  "latestVersion":"2.2.0",
  "numDownloads":9934,"screenshots":[],"previews":[],"activity":{"numCommits":"67",
    "numContributors":"1",
    "lastCommitDate":"2015-10-15 12:35:16"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0",
    "release":"2014-06-12 08:04:04",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":6,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0"},{"name":"1.0.1",
    "release":"2014-06-12 08:16:10",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.1"},{"name":"1.0.2",
    "release":"2014-06-12 08:20:10",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.2"},{"name":"1.0.4",
    "release":"2014-06-12 08:44:03",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":3,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.4"},{"name":"1.0.5",
    "release":"2014-06-12 09:06:03",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":2,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.5"},{"name":"1.0.6",
    "release":"2014-06-12 11:08:04",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.6"},{"name":"1.0.7",
    "release":"2014-06-12 11:12:04",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":24,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.7"},{"name":"1.0.8",
    "release":"2014-06-13 09:22:03",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":208,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.8"},{"name":"1.0.9",
    "release":"2014-07-02 12:44:04",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":201,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.0.9"},{"name":"1.1.0",
    "release":"2014-07-15 15:34:05",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":63,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.1.0"},{"name":"1.2.0",
    "release":"2014-07-17 11:34:04",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":166,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/1.2.0"},{"name":"2.0.0",
    "release":"2014-07-28 07:04:08",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":420,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/2.0.0"},{"name":"2.0.1",
    "release":"2014-08-29 08:12:04",
    "requires":{"piwik":">=2.3.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":1875,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/2.0.1"},{"name":"2.1.0",
    "release":"2015-01-28 09:40:04",
    "requires":{"piwik":">=2.9.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":504,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/2.1.0"},{"name":"2.1.3",
    "release":"2015-02-25 07:50:04",
    "requires":{"piwik":">=2.9.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":1997,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/2.1.3"},{"name":"2.2.0",
    "release":"2015-07-13 10:54:03",
    "requires":{"piwik":">=2.9.0",
      "php":">=5.4.0"},"readme":"# Piwik IntranetGeoIp Plugin\n\n## Description\n\nPiwik plugin to locate all locale data of a user based on the IP address\/subnetwork (country, region, city, latitude, longitude, provider, ...)\n\n***Please use it only for INTRANET tracking*** everything else just dont make sense :-)\n\n## FAQ\n\n__What does this plugin do?__\n\nIt adds visitor information based on the matched IP address from your configuration. Not more and not less.\nThe database schema and UI stays untouched, so all Piwik statistics can be used like you would use a internet GeoIP database.\n\n\n__How to configure\/install this plugin \/ the networks?__\n\nAfter installation and activation of the plugin, open the file `piwik\/config\/IntranetGeoIP.data.php`\n\nYou can their add your location information and their subnetworks.\n\nSee the file `piwik\/config\/IntranetGeoIP.data.php` or see the readme on github https:\/\/github.com\/ThaDafinser\/IntranetGeoIp\n\n\n__What statistics are available?__\n\nIf you create a full configuration data file, you'll see\n* Visitor -> Realtime visitor map\n* Visitor -> Location and provider\n* and many more...(in generall all statistics are available like using a internet GeoIP database)\n\n\n__Why there stands provider \"unknown\" in my visitor log?__\n\nIf your installation is stock, all visitors will get this \"flag\" to show you, what IPs are not matched.\nYou can adjust or remove this, by changing the \"noMatch\" block in your `IntranetGeoIP.data.php` file.\nIf you remove the complete block, none matched visitors will be skipped by this plugin.\nBut you can also fill all possible visitorInfos like you are used for matched IP addresses.\n\n\n__Can i use this plugin with a internet GeoIP database side by side?__\n\nYes you can.\nJust remove or comment out the `noMatch` block in your configuration file.\n\n__Note about the configuration?__\n\nInside the array key `visitorInfo` you can freely add\/remove all available columns from the `log_visit` table you want.\nThe keys below are just a suggestion, since they are the only one which make sense currently IMO.\nAll available fields, see here: http:\/\/developer.piwik.org\/guides\/persistence-and-the-mysql-backend#visits\n\nInside they key `networks` add all subnetworks which apply to this location.\n\n```php\nreturn [\n    \/*\n     * If the IP was not matched, apply these data to visitorInfo\n     * You can also apply here all possible visitorInformation data if you want\n     *\/\n    'noMatch' => [\n        'visitorInfo' => [\n            'location_provider' => 'unknown'\n        ]\n    ],\n    \n    [\n        'visitorInfo' => [\n            \/\/ISO-3166 alpha-2 code http:\/\/en.wikipedia.org\/wiki\/ISO_3166-1\n            'location_country' => 'at',\n            \n            \/\/the region code (i take them from piwik\/libs\/MaxMindGeoIp\/geoipregionvars.php\n            'location_region' => '08',\n            \n            \/\/should be freetext\n            'location_city' => 'Muntlix',\n            \n            \/\/get this from a picker, e.g. http:\/\/www.tytai.com\/gmap\/\n            'location_latitude' => '47.282024',\n            'location_longitude' => '9.662304',\n            \n            \/\/enter your company name or do it based on your domain hierarchy\n            'location_provider' => 'myCompany'\n        ],\n        'networks' => [\n            \/\/enter here all subnetworks for this location\n            \/\/use a subnetwork calculator, e.g. http:\/\/jodies.de\/ipcalc\n            '10.59.0.0\/19',\n            '170.56.251.200\/29'\n        ]\n    ],\n    \n    \/\/add more blocks live above\n];\n```\n",
    "numDownloads":4463,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-IntranetGeoIP\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Piwik plugin to locate all locale data of a user based on the IP address\/subnetwork (country, region, city, latitude, longitude, provider, ...)<\/p>\n\n<p><strong><em>Please use it only for INTRANET tracking<\/em><\/strong> everything else just dont make sense :-)<\/p>\n\n",
      "faq":"<p><strong>What does this plugin do?<\/strong><\/p>\n\n<p>It adds visitor information based on the matched IP address from your configuration. Not more and not less.\nThe database schema and UI stays untouched, so all Piwik statistics can be used like you would use a internet GeoIP database.<\/p>\n\n<p><strong>How to configure\/install this plugin \/ the networks?<\/strong><\/p>\n\n<p>After installation and activation of the plugin, open the file <code>piwik\/config\/IntranetGeoIP.data.php<\/code><\/p>\n\n<p>You can their add your location information and their subnetworks.<\/p>\n\n<p>See the file <code>piwik\/config\/IntranetGeoIP.data.php<\/code> or see the readme on github https:\/\/github.com\/ThaDafinser\/IntranetGeoIp<\/p>\n\n<p><strong>What statistics are available?<\/strong><\/p>\n\n<p>If you create a full configuration data file, you'll see\n* Visitor -&gt; Realtime visitor map\n* Visitor -&gt; Location and provider\n* and many more...(in generall all statistics are available like using a internet GeoIP database)<\/p>\n\n<p><strong>Why there stands provider \"unknown\" in my visitor log?<\/strong><\/p>\n\n<p>If your installation is stock, all visitors will get this \"flag\" to show you, what IPs are not matched.\nYou can adjust or remove this, by changing the \"noMatch\" block in your <code>IntranetGeoIP.data.php<\/code> file.\nIf you remove the complete block, none matched visitors will be skipped by this plugin.\nBut you can also fill all possible visitorInfos like you are used for matched IP addresses.<\/p>\n\n<p><strong>Can i use this plugin with a internet GeoIP database side by side?<\/strong><\/p>\n\n<p>Yes you can.\nJust remove or comment out the <code>noMatch<\/code> block in your configuration file.<\/p>\n\n<p><strong>Note about the configuration?<\/strong><\/p>\n\n<p>Inside the array key <code>visitorInfo<\/code> you can freely add\/remove all available columns from the <code>log_visit<\/code> table you want.\nThe keys below are just a suggestion, since they are the only one which make sense currently IMO.\nAll available fields, see here: http:\/\/developer.piwik.org\/guides\/persistence-and-the-mysql-backend#visits<\/p>\n\n<p>Inside they key <code>networks<\/code> add all subnetworks which apply to this location.<\/p>\n\n<pre><code>return [\n    \/*\n     * If the IP was not matched, apply these data to visitorInfo\n     * You can also apply here all possible visitorInformation data if you want\n     *\/\n    'noMatch' =&gt; [\n        'visitorInfo' =&gt; [\n            'location_provider' =&gt; 'unknown'\n        ]\n    ],\n\n    [\n        'visitorInfo' =&gt; [\n            \/\/ISO-3166 alpha-2 code http:\/\/en.wikipedia.org\/wiki\/ISO_3166-1\n            'location_country' =&gt; 'at',\n\n            \/\/the region code (i take them from piwik\/libs\/MaxMindGeoIp\/geoipregionvars.php\n            'location_region' =&gt; '08',\n\n            \/\/should be freetext\n            'location_city' =&gt; 'Muntlix',\n\n            \/\/get this from a picker, e.g. http:\/\/www.tytai.com\/gmap\/\n            'location_latitude' =&gt; '47.282024',\n            'location_longitude' =&gt; '9.662304',\n\n            \/\/enter your company name or do it based on your domain hierarchy\n            'location_provider' =&gt; 'myCompany'\n        ],\n        'networks' =&gt; [\n            \/\/enter here all subnetworks for this location\n            \/\/use a subnetwork calculator, e.g. http:\/\/jodies.de\/ipcalc\n            '10.59.0.0\/19',\n            '170.56.251.200\/29'\n        ]\n    ],\n\n    \/\/add more blocks live above\n];\n<\/code><\/pre>",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/IntranetGeoIP\/download\/2.2.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"Ip2Hostname",
  "displayName":"IP 2 Hostname",
  "owner":"ThaDafinser",
  "description":"Piwik plugin to get the hostname from the visitor IP",
  "homepage":"https:\/\/github.com\/ThaDafinser\/Piwik-Ip2Hostname",
  "createdDateTime":"2015-01-28 11:44:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-Ip2Hostname",
  "lastUpdated":"2015-10-15 08:00:03",
  "latestVersion":"v2.0.0",
  "numDownloads":4169,"screenshots":[],"previews":[],"activity":{"numCommits":"16",
    "numContributors":"2",
    "lastCommitDate":"2015-10-15 07:59:15"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.0",
    "release":"2015-01-28 11:44:03",
    "requires":{"piwik":">=2.10.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":2,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-Ip2Hostname\/commits\/0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Ip2Hostname\/download\/1.0.0"},{"name":"1.0.1",
    "release":"2015-01-28 12:18:02",
    "requires":{"piwik":">=2.10.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":1827,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-Ip2Hostname\/commits\/2.0.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Ip2Hostname\/download\/1.0.1"},{"name":"1.0.3",
    "release":"2015-08-24 13:28:03",
    "requires":{"piwik":">=2.10.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":515,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-Ip2Hostname\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/Ip2Hostname\/download\/1.0.3"},{"name":"v2.0.0",
    "release":"2015-10-15 08:00:03",
    "requires":{"piwik":">=2.15.0",
      "php":">=5.5.0"},"readme":"# Piwik Ip2Hostname Plugin\n\n## Description\n\nThis plugin (try) to get the hostname of the visitor and write it into the `log_visitor` table.\n\nThere are currently ***no reports or any views available***, to see a result. ***You need to directly query the table!***\nI currently dont have the time and need of such a view, and therefor maybe you'll never see one...if nobody else create oen :-)\n\nNOTE:\n***I use it currently only in an intranet enviroment*** to detect computers which have old enviroment, because the IP might change i log the hostname.\n\nI never tried it and probably wont use it for internet...\n",
    "numDownloads":1825,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-Ip2Hostname\/commits\/0.1.3",
    "readmeHtml":{"description":"\n\n<p>This plugin (try) to get the hostname of the visitor and write it into the <code>log_visitor<\/code> table.<\/p>\n\n<p>There are currently <strong><em>no reports or any views available<\/em><\/strong>, to see a result. <strong><em>You need to directly query the table!<\/em><\/strong>\nI currently dont have the time and need of such a view, and therefor maybe you'll never see one...if nobody else create oen :-)<\/p>\n\n<p>NOTE:\n<strong><em>I use it currently only in an intranet enviroment<\/em><\/strong> to detect computers which have old enviroment, because the IP might change i log the hostname.<\/p>\n\n<p>I never tried it and probably wont use it for internet...<\/p>",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/Ip2Hostname\/download\/v2.0.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"IP2Location",
  "displayName":"IP 2 Location",
  "owner":"ip2location",
  "description":"Use IP2Location geolocation database to lookup for accurate visitor location in Piwik.",
  "homepage":"http:\/\/www.ip2location.com\/developers\/piwik",
  "createdDateTime":"2014-04-23 09:24:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik",
  "lastUpdated":"2016-04-19 03:08:03",
  "latestVersion":"2.2.0",
  "numDownloads":16518,"screenshots":[],"previews":[],"activity":{"numCommits":"33",
    "numContributors":"3",
    "lastCommitDate":"2016-04-19 03:07:28"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"2.0.0",
    "release":"2014-04-23 09:24:05",
    "requires":{"piwik":">=2.0.1",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":1589,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.0.0"},{"name":"2.0.2",
    "release":"2014-07-15 07:50:03",
    "requires":{"piwik":">=2.0.1",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":3772,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.0.2"},{"name":"2.1.1",
    "release":"2015-03-10 01:36:03",
    "requires":{"piwik":">=2.0.1",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":402,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.1.1"},{"name":"2.1.3",
    "release":"2015-03-24 01:54:03",
    "requires":{"piwik":">=2.12.0",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":199,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.1.3"},{"name":"2.1.4",
    "release":"2015-03-30 00:48:04",
    "requires":{"piwik":">=2.12.0",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":221,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.1.4"},{"name":"2.1.5",
    "release":"2015-04-07 08:08:03",
    "requires":{"piwik":">=2.12.0",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":5127,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.1.5"},{"name":"2.1.8",
    "release":"2015-12-16 01:22:03",
    "requires":{"piwik":">=2.12.0",
      "php":">=5.3.20"},"readme":"",
    "numDownloads":3639,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/1.0.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.1.8"},{"name":"2.2.0",
    "release":"2016-04-19 03:08:03",
    "requires":{"piwik":">=2.12.0",
      "php":">=5.3.20"},"readme":"# Piwik IP2Location Plugin \n\n## Description\n\nThis IP2Location plugin enables more accurate location lookup in your Piwik visitor log.\n\nYou need a IP2Location BIN database to make this plugin works. Database is available for free at\n\nhttp:\/\/lite.ip2location.com or http:\/\/www.ip2location.com for a commercial database.\n\n## Installation \/ Update\n\nSee http:\/\/piwik.org\/faq\/plugins\/#faq_21\n\n## Changelog\n\n__2.2.0__\n* added custom report to view additional information such as Time Zone, ZIP code, usage type.\n\n__2.1.0__\n* updated to IP2Location 7.0.0 library\n\n__2.0.0__\n* first release for Piwik 2.0\n\n## License\n\nGPL v3 \/ fair use\n\n## Support\n\nPlease contact us at support@ip2location.com\n",
    "numDownloads":1569,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ip2location\/ip2location-piwik\/commits\/0.46",
    "readmeHtml":{"description":"\n\n<p>This IP2Location plugin enables more accurate location lookup in your Piwik visitor log.<\/p>\n\n<p>You need a IP2Location BIN database to make this plugin works. Database is available for free at<\/p>\n\n<p>http:\/\/lite.ip2location.com or http:\/\/www.ip2location.com for a commercial database.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<p><strong>2.2.0<\/strong>\n* added custom report to view additional information such as Time Zone, ZIP code, usage type.<\/p>\n\n<p><strong>2.1.0<\/strong>\n* updated to IP2Location 7.0.0 library<\/p>\n\n<p><strong>2.0.0<\/strong>\n* first release for Piwik 2.0<\/p>"},"download":"\/api\/2.0\/plugins\/IP2Location\/download\/2.2.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"IPv6Usage",
  "displayName":"IPv6 Usage",
  "owner":"halfdan",
  "description":"Piwik Plugin to track whether visitors are using IPv4 or IPv6",
  "homepage":"http:\/\/github.com\/halfdan\/IPv6Usage",
  "createdDateTime":"2014-12-23 00:40:33",
  "donate":{"flattr":"https:\/\/flattr.com\/profile\/test1",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":["ipv4",
    "ipv6"],"basePrice":0,"authors":[{"name":"Fabian Becker",
    "email":"test8@example.com",
    "homepage":"http:\/\/geekproject.eu"}],"repositoryUrl":"https:\/\/github.com\/halfdan\/IPv6Usage",
  "lastUpdated":"2014-12-23 01:13:18",
  "latestVersion":"0.6.0",
  "numDownloads":0,"screenshots":[],"previews":[],"activity":{"numCommits":"35",
    "numContributors":"2",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.5.0",
    "release":"2014-12-23 00:40:33",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/halfdan\/IPv6Usage\/commits\/0.5.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/IPv6Usage\/download\/0.5.0"},{"name":"0.6.0",
    "release":"2014-12-23 01:13:18",
    "requires":{},"readme":"# IPv6Usage\n\n## Description\n\nThis is a plugin for Piwik that generates reports about the IPv6 reach of your websites. It is written as a tracker plugin and directly hooks into the Piwik tracking call.\n\n## Documentation\n\nI wrote an article about the development that lead to this plugin and explained how the plugin works internally. You can find the article at [Geekmonkey](http:\/\/geekmonkey.org\/articles\/34-how-to-write-a-piwik-plugin)\n\nThere is also a [short article](http:\/\/geekmonkey.org\/articles\/33-tracking-the-ipv6-reach-of-your-website-with-piwik\/) that explains how to setup the plugin.\n\n## Contribute \n\nIf you are interested in contributing to this plugin, feel free to send pull requests or create issues.\n\n## License\n\nGPLv3 or later\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/halfdan\/IPv6Usage\/commits\/0.6.0",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for Piwik that generates reports about the IPv6 reach of your websites. It is written as a tracker plugin and directly hooks into the Piwik tracking call.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/IPv6Usage\/download\/0.6.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"kDebug",
  "displayName":"kDebug",
  "owner":"XaviTorello",
  "description":"Activate or deactivate DEBUG tracking mode with a simple click.",
  "homepage":"http:\/\/xaviertorello.cat",
  "createdDateTime":"2014-09-09 13:42:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/XaviTorello\/kDebug-piwik",
  "lastUpdated":"2014-09-19 13:08:03",
  "latestVersion":"0.1.2",
  "numDownloads":3626,"screenshots":[],"previews":[],"activity":{"numCommits":"8",
    "numContributors":"2",
    "lastCommitDate":"2016-01-11 08:58:56"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-09-09 13:42:03",
    "requires":{"piwik":">=2.4.0-b1",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/XaviTorello\/kDebug-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/kDebug\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-09-09 14:06:03",
    "requires":{"piwik":">=2.4.0-b1",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":133,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/XaviTorello\/kDebug-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/kDebug\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-09-19 13:08:03",
    "requires":{"piwik":">=2.4.0-b1",
      "php":">=5.3.0"},"readme":"# Piwik kDebug Plugin\n\n## Description\n\nActivate or deactivate DEBUG tracking mode with a simple click.\n\n![kDebug Screenshot](http:\/\/xaviertorello.cat\/img\/projects\/kDebugEN.png \"kDebug toogle\")\n\nkDebug is a simple plugin for Piwik to enable \/ disable DEBUG mode for tracking requests with a simple click.\n\nBy default, it's needed to modify manually the Piwiks config.ini file.\n\nWith this plugin just navigate to \"Settings > Debug\", and click on the toggle button to change the status of DEBUG mode.\n\n[More information](http:\/\/xaviertorello.cat\/#portfolio \"Xavier Torell\u00f3 Porfolio\")\n\n\n\n## Installation\n\nInstall it via Piwik Marketplace\n\n\n## FAQ\n\n__What exactly is included in this plugin?__\n\n* A simple and quick method to enable\/disable DEBUG mode for tracking requests\n\n\n## Changelog\n\n0.1.0 First version. Toggle button to activate\/deactivate DEBUG mode\n\n\n## License\n\nGPL v3 or later\n\n\n## Support\n\nPlease direct any feedback to [Xavier Torell\u00f3](http:\/\/xaviertorello.cat \"Xavier Torell\u00f3\") [http:\/\/xaviertorello.cat\/#contact]\n",
    "numDownloads":3492,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/XaviTorello\/kDebug-piwik\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Activate or deactivate DEBUG tracking mode with a simple click.<\/p>\n\n<p><img src=\"http:\/\/xaviertorello.cat\/img\/projects\/kDebugEN.png\" alt=\"kDebugEN.png\" \/><\/p>\n\n<p>kDebug is a simple plugin for Piwik to enable \/ disable DEBUG mode for tracking requests with a simple click.<\/p>\n\n<p>By default, it's needed to modify manually the Piwiks config.ini file.<\/p>\n\n<p>With this plugin just navigate to \"Settings &gt; Debug\", and click on the toggle button to change the status of DEBUG mode.<\/p>\n\n<p><a href=\"http:\/\/xaviertorello.cat\/#portfolio\">More information<\/a><\/p>\n\n",
      "faq":"<p><strong>What exactly is included in this plugin?<\/strong><\/p>\n\n<ul><li>A simple and quick method to enable\/disable DEBUG mode for tracking requests<\/li>\n<\/ul>",
      "documentation":"",
      "changelog":"<p>0.1.0 First version. Toggle button to activate\/deactivate DEBUG mode<\/p>"},"download":"\/api\/2.0\/plugins\/kDebug\/download\/0.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"LdapConnection",
  "displayName":"Ldap Connection",
  "owner":"ThaDafinser",
  "description":"Plugin to make a LDAP connection, which can be used by various LDAP plugins",
  "homepage":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapConnection",
  "createdDateTime":"2014-08-06 07:50:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapConnection",
  "lastUpdated":"2015-01-29 07:20:09",
  "latestVersion":"0.3.1",
  "numDownloads":4104,"screenshots":[],"previews":[],"activity":{"numCommits":"11",
    "numContributors":"1",
    "lastCommitDate":"2015-03-12 11:53:13"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-08-06 07:50:08",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":205,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapConnection\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapConnection\/download\/0.1.0"},{"name":"0.2.0",
    "release":"2014-08-25 09:08:09",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":22,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapConnection\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapConnection\/download\/0.2.0"},{"name":"0.3.0",
    "release":"2014-08-26 06:00:09",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":1119,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapConnection\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapConnection\/download\/0.3.0"},{"name":"0.3.1",
    "release":"2015-01-29 07:20:09",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"# Piwik LdapConnection Plugin\n\n## Description\n\nConfigurable piwik plugin to create an LDAP connection, which can be reused by other plugins.\nIs uses the ZF2 Ldap component: http:\/\/framework.zend.com\/manual\/2.3\/en\/index.html#zend-ldap\n\nCurrently used by https:\/\/github.com\/ThaDafinser\/LdapVisitorInfo\n\n## FAQ\n\n__Why is PIWIK 2.5 required?__\n\nBecause the configuration (to be explicit accountFilterFormat) is destroyed in the previous version\nSee the ticket here: https:\/\/github.com\/piwik\/piwik\/issues\/5890\n\n\n__What does this plugin do?__\n\nIt creates based on your configuration a connection to LDAP. Not more and not less :-)\n\n\n__How can i use this LDAP connection in another plugin?__\n\nThis is an example to retrieve the connection.\nFor documentation please see http:\/\/framework.zend.com\/manual\/2.3\/en\/index.html#zend-ldap\n\n```php\nnamespace Piwik\\Plugins\\YourPlugin;\n\nuse Piwik\\Plugin;\nuse Piwik\\Plugins\\LdapConnection\\API as APILdapConnection;\nuse Zend\\Ldap\\Ldap;\n\nclass YourPlugin extends Plugin\n{\n    private function doSomething()\n    {\n    \t\/* @var $ldap \\Zend\\Ldap\\Ldap *\/\n        $ldap = APILdapConnection::getInstance()->getConnection();\n        $ldap->connect();\n        \n        $filter = sprintf('(&(objectclass=user)(samAccountName=%s))', $visitorUsername);\n        $collection = $ldap->search($filter, null, Ldap::SEARCH_SCOPE_SUB, ['displayname']);\n        \n        if ($collection->count() >= 1) {\n        \t$result = $collection->getFirst();\n        \t\/\/do something with the result...\n        }\n    }\n}\n```\n",
    "numDownloads":2758,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapConnection\/commits\/v0.5.1",
    "readmeHtml":{"description":"\n\n<p>Configurable piwik plugin to create an LDAP connection, which can be reused by other plugins.\nIs uses the ZF2 Ldap component: http:\/\/framework.zend.com\/manual\/2.3\/en\/index.html#zend-ldap<\/p>\n\n<p>Currently used by https:\/\/github.com\/ThaDafinser\/LdapVisitorInfo<\/p>\n\n",
      "faq":"<p><strong>Why is PIWIK 2.5 required?<\/strong><\/p>\n\n<p>Because the configuration (to be explicit accountFilterFormat) is destroyed in the previous version\nSee the ticket here: https:\/\/github.com\/piwik\/piwik\/issues\/5890<\/p>\n\n<p><strong>What does this plugin do?<\/strong><\/p>\n\n<p>It creates based on your configuration a connection to LDAP. Not more and not less :-)<\/p>\n\n<p><strong>How can i use this LDAP connection in another plugin?<\/strong><\/p>\n\n<p>This is an example to retrieve the connection.\nFor documentation please see http:\/\/framework.zend.com\/manual\/2.3\/en\/index.html#zend-ldap<\/p>\n\n<pre><code>namespace Piwik\\Plugins\\YourPlugin;\n\nuse Piwik\\Plugin;\nuse Piwik\\Plugins\\LdapConnection\\API as APILdapConnection;\nuse Zend\\Ldap\\Ldap;\n\nclass YourPlugin extends Plugin\n{\n    private function doSomething()\n    {\n        \/* @var $ldap \\Zend\\Ldap\\Ldap *\/\n        $ldap = APILdapConnection::getInstance()-&gt;getConnection();\n        $ldap-&gt;connect();\n\n        $filter = sprintf('(&amp;(objectclass=user)(samAccountName=%s))', $visitorUsername);\n        $collection = $ldap-&gt;search($filter, null, Ldap::SEARCH_SCOPE_SUB, ['displayname']);\n\n        if ($collection-&gt;count() &gt;= 1) {\n            $result = $collection-&gt;getFirst();\n            \/\/do something with the result...\n        }\n    }\n}\n<\/code><\/pre>",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/LdapConnection\/download\/0.3.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"LdapVisitorInfo",
  "displayName":"Ldap Visitor Info",
  "owner":"ThaDafinser",
  "description":"Piwik plugin to get visitor details (thumbnail, description) from LDAP",
  "homepage":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo",
  "createdDateTime":"2014-08-06 07:50:42",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo",
  "lastUpdated":"2015-02-23 09:30:03",
  "latestVersion":"1.0.0",
  "numDownloads":4381,"screenshots":[],"previews":[],"activity":{"numCommits":"16",
    "numContributors":"1",
    "lastCommitDate":"2015-03-12 11:51:34"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-08-06 07:50:42",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":175,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapVisitorInfo\/download\/0.1.0"},{"name":"0.2.0",
    "release":"2014-08-25 09:06:04",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":80,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapVisitorInfo\/download\/0.2.0"},{"name":"0.3.0",
    "release":"2014-09-01 06:28:05",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":1089,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapVisitorInfo\/download\/0.3.0"},{"name":"0.3.1",
    "release":"2015-01-29 07:20:14",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":239,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo\/commits\/v0.5.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LdapVisitorInfo\/download\/0.3.1"},{"name":"1.0.0",
    "release":"2015-02-23 09:30:03",
    "requires":{"piwik":">=2.5.0",
      "php":">=5.4.0"},"readme":"# Piwik LdapVisitorInfo Plugin\n\n## Description\n\nConfigurable piwik plugin to view a visitor thumbnail and description live from LDAP.\n\n***This plugin requires https:\/\/github.com\/ThaDafinser\/LdapConnection to work!***\n\n## FAQ\n\n__Why is PIWIK 2.5 required?__\n\nBecause the configuration (to be explicit accountFilterFormat) is destroyed in the previous version\nSee the ticket here: https:\/\/github.com\/piwik\/piwik\/issues\/5890\n\n\n__What does this plugin do?__\n\nIt displays live a thumbnail and a description in the visitor detail page from LDAP\n\n\n__How to tell Piwik which user is currently using your website?__\n\nYou need so track a custom user (username, mail, ...) visitor variable, so this plugin know which user shall be fetched from LDAP.\nPlease see the official documentation: http:\/\/piwik.org\/docs\/custom-variables\/ or http:\/\/developer.piwik.org\/api-reference\/tracking-javascript#custom-variables\n\nExample:\n`_paq.push([\"setCustomVariable\", 1, \"username\", \"<?php echo $usenamer; ?>\", \"visit\"]);`\n\n__NEW: Use the userId from Piwik itself__\n\nNow you can use the piwik UserId: http:\/\/piwik.org\/docs\/user-id\/\nJust change the plugin settings to use the piwik UserId instead of a custom variable!\n",
    "numDownloads":2798,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-LdapVisitorInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Configurable piwik plugin to view a visitor thumbnail and description live from LDAP.<\/p>\n\n<p><strong><em>This plugin requires https:\/\/github.com\/ThaDafinser\/LdapConnection to work!<\/em><\/strong><\/p>\n\n",
      "faq":"<p><strong>Why is PIWIK 2.5 required?<\/strong><\/p>\n\n<p>Because the configuration (to be explicit accountFilterFormat) is destroyed in the previous version\nSee the ticket here: https:\/\/github.com\/piwik\/piwik\/issues\/5890<\/p>\n\n<p><strong>What does this plugin do?<\/strong><\/p>\n\n<p>It displays live a thumbnail and a description in the visitor detail page from LDAP<\/p>\n\n<p><strong>How to tell Piwik which user is currently using your website?<\/strong><\/p>\n\n<p>You need so track a custom user (username, mail, ...) visitor variable, so this plugin know which user shall be fetched from LDAP.\nPlease see the official documentation: http:\/\/piwik.org\/docs\/custom-variables\/ or http:\/\/developer.piwik.org\/api-reference\/tracking-javascript#custom-variables<\/p>\n\n<p>Example:\n<code>_paq.push([\"setCustomVariable\", 1, \"username\", \"&lt;?php echo $usenamer; ?&gt;\", \"visit\"]);<\/code><\/p>\n\n<p><strong>NEW: Use the userId from Piwik itself<\/strong><\/p>\n\n<p>Now you can use the piwik UserId: http:\/\/piwik.org\/docs\/user-id\/\nJust change the plugin settings to use the piwik UserId instead of a custom variable!<\/p>",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/LdapVisitorInfo\/download\/1.0.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"LiveTab",
  "displayName":"Live Tab",
  "owner":"tsteur",
  "description":"Keep an eye on the number of live visitors in the browser tab. It displays the number of visitors in the last 30 minutes in the browser tab.",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2014-12-23 00:38:34",
  "donate":{"paypal":"test1@example.com",
    "flattr":"https:\/\/flattr.com\/profile\/steurth",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":["live",
    "tab"],"basePrice":0,"authors":[{"name":"Thomas Steur",
    "email":"test10@example.com",
    "homepage":"http:\/\/piwik.org"}],"repositoryUrl":"https:\/\/github.com\/tsteur\/piwik-livetab-plugin",
  "lastUpdated":"2014-12-23 01:01:50",
  "latestVersion":"1.0.8",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/LiveTab\/images\/Browser_Tab.png"],"previews":[],"activity":{"numCommits":"54",
    "numContributors":"1",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0",
    "release":"2014-12-23 00:38:34",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/commits\/0.1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LiveTab\/download\/1.0"},{"name":"1.0.1",
    "release":"2014-12-23 00:38:48",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/commits\/v1.0.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LiveTab\/download\/1.0.1"},{"name":"1.0.2",
    "release":"2014-12-23 00:39:02",
    "requires":{"piwik":">=2.0.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/commits\/v1.0.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LiveTab\/download\/1.0.2"},{"name":"1.0.3",
    "release":"2014-12-23 00:40:08",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/commits\/v1.0.3b",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LiveTab\/download\/1.0.3"},{"name":"1.0.8",
    "release":"2014-12-23 01:01:50",
    "requires":{"piwik":">=2.0.0"},"readme":"# Piwik LiveTab Plugin \n\n[![Build Status](https:\/\/travis-ci.org\/tsteur\/piwik-livetab-plugin.png?branch=master)](https:\/\/travis-ci.org\/tsteur\/piwik-livetab-plugin)\n\n## Description\n\nThis is a plugin for the Open Source Web Analytics platform [Piwik](http:\/\/piwik.org). It allows you to keep an eye on the number of live visitors in the browser tab. It displays the number of visits, actions, unique visitors or converted goals in the last X minutes in the browser tab. The number will be updated every minute.\n\nFor better and faster readability the value will be shortened when greater than 1000. For instance to 3.12K or 3.43M.\n\n![Screenshot](https:\/\/raw.github.com\/tsteur\/piwik-livetab-plugin\/master\/screenshots\/Browser_Tab.png)\n\n## Installation\n\nSee http:\/\/piwik.org\/faq\/plugins\/#faq_21\n\n## FAQ\n\n__Is it possible to configure the displayed metric?__\n\nYes, you can choose between Visits, Actions, Converted Visits and Visitors.\n\n__Is it possible to configure the displayed metric per user?__\n\nYes, this is also possible. Each user can configure the plugin differently.\n\n\n## Changelog\n\n__1.0.2__\n* Compatible with Piwik 2.0\n\n__1.0.0__\n* Initial release\n\n## License\n\nGPL v3 or later\n\n## Support\n\nPlease direct any feedback to: \n\n* [https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/issues](https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/issues)\n* [https:\/\/www.twitter.com\/tsteur](https:\/\/www.twitter.com\/tsteur)\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/tsteur\/piwik-livetab-plugin\/commits\/1.0.8",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for the Open Source Web Analytics platform <a href=\"http:\/\/piwik.org\">Piwik<\/a>. It allows you to keep an eye on the number of live visitors in the browser tab. It displays the number of visits, actions, unique visitors or converted goals in the last X minutes in the browser tab. The number will be updated every minute.<\/p>\n\n<p>For better and faster readability the value will be shortened when greater than 1000. For instance to 3.12K or 3.43M.<\/p>\n\n<p><img src=\"https:\/\/raw.github.com\/tsteur\/piwik-livetab-plugin\/master\/screenshots\/Browser_Tab.png\" alt=\"Browser_Tab.png\" \/><\/p>\n\n",
      "faq":"<p><strong>Is it possible to configure the displayed metric?<\/strong><\/p>\n\n<p>Yes, you can choose between Visits, Actions, Converted Visits and Visitors.<\/p>\n\n<p><strong>Is it possible to configure the displayed metric per user?<\/strong><\/p>\n\n<p>Yes, this is also possible. Each user can configure the plugin differently.<\/p>",
      "documentation":"",
      "changelog":"<p><strong>1.0.2<\/strong>\n* Compatible with Piwik 2.0<\/p>\n\n<p><strong>1.0.0<\/strong>\n* Initial release<\/p>"},"download":"\/api\/2.0\/plugins\/LiveTab\/download\/1.0.8"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"LoginHttpAuth",
  "displayName":"Login Http Auth",
  "owner":"piwik",
  "description":"This plugin lets you connect to Piwik using HTTP Auth protocol instead of the standard Login mechanism",
  "homepage":"http:\/\/plugins.piwik.org\/LoginHttpAuth",
  "createdDateTime":"2014-12-23 01:16:17",
  "donate":{},"support":[],"isTheme":false,"keywords":["authentication",
    "httpAuth",
    "login"],"basePrice":0,"authors":[{"name":"Piwik",
    "email":"test1@example.com",
    "homepage":"http:\/\/piwik.org"}],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-LoginHttpAuth",
  "lastUpdated":"2014-12-23 01:16:33",
  "latestVersion":"1.0.1",
  "numDownloads":0,"screenshots":[],"previews":[{"type":"demo",
    "provider":"link",
    "url":"https:\/\/demo.loginhttpauth.org"}],"activity":{"numCommits":"34",
    "numContributors":"4",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0",
    "release":"2014-12-23 01:16:17",
    "requires":{"piwik":">=2.0.4-b12"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-LoginHttpAuth\/commits\/1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LoginHttpAuth\/download\/1.0"},{"name":"1.0.1",
    "release":"2014-12-23 01:16:33",
    "requires":{"piwik":">=2.0.4-b12"},"readme":"# Piwik LoginHttpAuth Plugin\n\n## Description\n\nThis plugin extends the standard Piwik authentication to use Basic HTTP Authentication.\nIt lets you login to Piwik using the HTTP Auth mechanism.\n\nHow do I setup HTTP Auth using Piwik?\n\n* Login your Piwik as Super User. Click Settings, then click Marketplace.\n* Install the LoginHttpAuth plugin, then click Activate.\n* Click Settings, then click Users.\n    * Check that there is a user in Piwik for each person that should have access to Piwik.\n* Enable HTTP Auth on the Piwik on your web server.\n\n    For example, if you are using Apache webserver:\n\n    * generate a .htpasswd file with your encrypted logins and passwords\n    * [copy this example .htaccess file](https:\/\/github.com\/piwik\/plugin-LoginHttpAuth\/blob\/master\/TemplateHtaccess\/.htaccess) in the root directory of Piwik, and set the path to your .htpasswd file\n* When you go to Piwik, you will see the Authentication window.\n  Congratulations! You are now using HTTP Auth to protect Piwik.\n\n## Changelog\n\n * 1.0 - First public release [compatible with Piwik 2](http:\/\/piwik.org\/blog\/2013\/12\/piwik-2-0-release-announced-biggest-best-release-yet\/)\n\n## License\n\nGPL v3 or later\n\n## Support\n\n* Report bugs for LoginHttpAuth in [our Github issues tracker](https:\/\/github.com\/piwik\/plugin-LoginHttpAuth\/issues)\n* Please direct any feedback to [hello@piwik.org](mailto:hello@piwik.org)\n\n\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-LoginHttpAuth\/commits\/1.0.1",
    "readmeHtml":{"description":"\n\n<p>This plugin extends the standard Piwik authentication to use Basic HTTP Authentication.\nIt lets you login to Piwik using the HTTP Auth mechanism.<\/p>\n\n<p>How do I setup HTTP Auth using Piwik?<\/p>\n\n<ul><li>Login your Piwik as Super User. Click Settings, then click Marketplace.<\/li>\n<li>Install the LoginHttpAuth plugin, then click Activate.<\/li>\n<li>Click Settings, then click Users.\n\n<ul><li>Check that there is a user in Piwik for each person that should have access to Piwik.<\/li>\n<\/ul><\/li>\n<li><p>Enable HTTP Auth on the Piwik on your web server.<\/p>\n\n<p>For example, if you are using Apache webserver:<\/p>\n\n<ul><li>generate a .htpasswd file with your encrypted logins and passwords<\/li>\n<li><a href=\"https:\/\/github.com\/piwik\/plugin-LoginHttpAuth\/blob\/master\/TemplateHtaccess\/.htaccess\">copy this example .htaccess file<\/a> in the root directory of Piwik, and set the path to your .htpasswd file<\/li>\n<\/ul><\/li>\n<li>When you go to Piwik, you will see the Authentication window.\nCongratulations! You are now using HTTP Auth to protect Piwik.<\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>1.0 - First public release <a href=\"http:\/\/piwik.org\/blog\/2013\/12\/piwik-2-0-release-announced-biggest-best-release-yet\/\">compatible with Piwik 2<\/a><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/LoginHttpAuth\/download\/1.0.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"LoginRevokable",
  "displayName":"Login Revokable",
  "owner":"torosian",
  "description":"An Authentication plugin that allows a user to log into multiple locations, however remotely logs out of all locations when any of the locations log o",
  "homepage":"https:\/\/github.com\/torosian\/LoginRevokable",
  "createdDateTime":"2015-03-06 16:52:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/torosian\/LoginRevokable",
  "lastUpdated":"2015-03-06 16:52:03",
  "latestVersion":"0.1.4",
  "numDownloads":2310,"screenshots":[],"previews":[],"activity":{"numCommits":"10",
    "numContributors":"1",
    "lastCommitDate":"2015-03-09 18:52:53"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.4",
    "release":"2015-03-06 16:52:03",
    "requires":{"piwik":">=2.11.2-b1"},"readme":"# Piwik LoginRevokable Plugin\n\n## Description\n\nA plugin for Piwik that allows multiple logins by the same user, but remotely terminates sessions when any of them log out. This replaces the existing core Login plugin.\n\n## FAQ\n\n## Changelog\n\nInitial Commit, adding first version\n\n## Support\n\nPlease direct any feedback to https:\/\/github.com\/torosian\/LoginRevokable\/issues",
    "numDownloads":2310,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/torosian\/LoginRevokable\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>A plugin for Piwik that allows multiple logins by the same user, but remotely terminates sessions when any of them log out. This replaces the existing core Login plugin.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<p>Initial Commit, adding first version<\/p>"},"download":"\/api\/2.0\/plugins\/LoginRevokable\/download\/0.1.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"LogViewer",
  "displayName":"Log Viewer",
  "owner":"piwik",
  "description":"View log messages logged by Piwik",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2015-09-22 09:26:18",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-LogViewer",
  "lastUpdated":"2015-10-21 23:28:03",
  "latestVersion":"0.2.0",
  "numDownloads":2414,"screenshots":[],"previews":[],"activity":{"numCommits":"34",
    "numContributors":"4",
    "lastCommitDate":"2016-06-02 07:53:33"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-09-22 09:26:18",
    "requires":{"piwik":">=2.15.0-b4"},"readme":"",
    "numDownloads":115,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-LogViewer\/commits\/0.1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LogViewer\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-10-02 11:18:04",
    "requires":{"piwik":">=2.15.0-b4"},"readme":"",
    "numDownloads":159,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-LogViewer\/commits\/0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/LogViewer\/download\/0.1.1"},{"name":"0.2.0",
    "release":"2015-10-21 23:28:03",
    "requires":{"piwik":">=2.15.0-rc4"},"readme":"# Piwik LogViewer Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-LogViewer.svg)](https:\/\/travis-ci.org\/piwik\/plugin-LogViewer)\n\n## Description\n\nView log messages that were logged by Piwik via the Piwik UI or HTTP Reporting API.\n\n## FAQ\n\n__I want to see more than 100 log messages, is it possible?__\n\nYes, there is a `limit` URL parameter that you can change to any number.\n\n__Can I use regular expressions in the search field?__\n\nYes, you can enable regular expressions next to the search field.\n\n__Is the search field case insensitive?__\n\nYes.\n\n__How is a Piwik log line formatted by default?__\n\n`'$severity $tag[$datetime] [$requestId] $message` eg `WARNING Piwik\\Common[2015-01-01 01:02:03] [cf27] The log message`\n\n__Is the search pattern applied to the whole log line?__\n\nYes, this means a search for `WARNING Piwik\\Common` would deliver you all warnings triggered by `Piwik\\Common`.\n\n__How do I find all messages that belong to a certain request?__\n\nEach log message shows a \"Request Id\". By clicking on this Id it selects all log messages of the same request.\nAlternatively you can search for the expression `\\[1234\\]` where `1234` need to be replaced by a Request Id.\n\n__How do I find messages that belong to the same day?__\n\nEither click on a date field or search for it, eg `2012-12-12`.\n\n__What are the known issues?__\n\n* If there are messages being logged while viewing the log messages, the paging might not work 100% correctly.\n* There seems to be a problem when searching for a single quotation mark \"'\".\n\n## Changelog\n\n* 0.2.0 Compatibility w\/ Piwik 2.15.\n* 0.1.1 Fix for IE8\n* 0.1.0 Initial Release\n\n## Support\n\nPlease direct any feedback to [hello@piwik.org](mailto:hello@piwik.org)\n",
    "numDownloads":2140,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-LogViewer\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>View log messages that were logged by Piwik via the Piwik UI or HTTP Reporting API.<\/p>\n\n",
      "faq":"<p><strong>I want to see more than 100 log messages, is it possible?<\/strong><\/p>\n\n<p>Yes, there is a <code>limit<\/code> URL parameter that you can change to any number.<\/p>\n\n<p><strong>Can I use regular expressions in the search field?<\/strong><\/p>\n\n<p>Yes, you can enable regular expressions next to the search field.<\/p>\n\n<p><strong>Is the search field case insensitive?<\/strong><\/p>\n\n<p>Yes.<\/p>\n\n<p><strong>How is a Piwik log line formatted by default?<\/strong><\/p>\n\n<p><code>'$severity $tag[$datetime] [$requestId] $message<\/code> eg <code>WARNING Piwik\\Common[2015-01-01 01:02:03] [cf27] The log message<\/code><\/p>\n\n<p><strong>Is the search pattern applied to the whole log line?<\/strong><\/p>\n\n<p>Yes, this means a search for <code>WARNING Piwik\\Common<\/code> would deliver you all warnings triggered by <code>Piwik\\Common<\/code>.<\/p>\n\n<p><strong>How do I find all messages that belong to a certain request?<\/strong><\/p>\n\n<p>Each log message shows a \"Request Id\". By clicking on this Id it selects all log messages of the same request.\nAlternatively you can search for the expression <code>\\[1234\\]<\/code> where <code>1234<\/code> need to be replaced by a Request Id.<\/p>\n\n<p><strong>How do I find messages that belong to the same day?<\/strong><\/p>\n\n<p>Either click on a date field or search for it, eg <code>2012-12-12<\/code>.<\/p>\n\n<p><strong>What are the known issues?<\/strong><\/p>\n\n<ul><li>If there are messages being logged while viewing the log messages, the paging might not work 100% correctly.<\/li>\n<li>There seems to be a problem when searching for a single quotation mark \"'\".<\/li>\n<\/ul>",
      "documentation":"",
      "changelog":"<ul><li>0.2.0 Compatibility w\/ Piwik 2.15.<\/li>\n<li>0.1.1 Fix for IE8<\/li>\n<li>0.1.0 Initial Release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/LogViewer\/download\/0.2.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"page2images-visual-link",
  "displayName":"page 2images-visual-link",
  "owner":"SuzhouKada",
  "description":"This plugin allow you visualize links of your website by just one click installation. When user move mouse over the text links, they will see a previe",
  "homepage":"http:\/\/www.page2images.com",
  "createdDateTime":"2014-12-23 01:19:04",
  "donate":{},"support":[],"isTheme":false,"keywords":["page2images",
    "website",
    "screenshot"],"basePrice":0,"authors":[{"name":"SuzhouKada",
    "email":"test5@example.com",
    "homepage":"http:\/\/www.page2images.com"}],"repositoryUrl":"https:\/\/github.com\/SuzhouKada\/piwik",
  "lastUpdated":"2014-12-23 01:19:04",
  "latestVersion":"1.0.3",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/page2images-visual-link\/images\/visual-link-screenshot-on-domz.png",
    "https:\/\/plugins.piwik.org\/page2images-visual-link\/images\/visual-link-screenshot-on-domz_02.png",
    "https:\/\/plugins.piwik.org\/page2images-visual-link\/images\/visual-link-screenshot-on-domz_03.png"],"previews":[],"activity":{"numCommits":"8",
    "numContributors":"1",
    "lastCommitDate":"1970-01-01 00:33:34"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.3",
    "release":"2014-12-23 01:19:04",
    "requires":{},"readme":"# Page2Images Visual Link Plugin\n\n## Description\n\nThis plugin allow you visualize links of your website by just one click installation. When user move mouse over the text links, they will see a preview picture of this link. By default, [only extra links] will have preview thumbnails. You can change the setting in the JS files.\n\n![Screenshot](https:\/\/github.com\/SuzhouKada\/piwik\/blob\/master\/screenshots\/visual-link-screenshot-on-domz.png)\n\n## Installation\n\nJust download the plugin and copy it to the plugin directory.\nIf you need change the default behavior, you can open the js file and change the value as needed.\nEnable preload mode - p2iQuery().run(\"Free\", true, false);\nEnable preload mode & inner link mode - p2iQuery().run(\"Free\", true, true);\n\n## FAQ\n\nWho need this plugin?\nWebsite master who want to their users see the webpage thumbnail of one extra link before they open this page.\nWhat is the benefit?\nThis plugin can save end users' time. They will know whether they need go to this page or not when they see the preview image. \nIs it free?\nYes, it is totally free. But we will add a small water mark in the bottom of preview picture. The paid version does not have this limitation.\nDoes it support https?\nFree version does not support https. \n\n\n## Changelog\n\n__1.0.0__\n* Initial release\n\n## License\n\nGPL v2 or later\n\n## Support\n\nPlease direct any feedback to: \n\n* [https:\/\/github.com\/SuzhouKada\/piwik\/issues](https:\/\/github.com\/SuzhouKada\/piwik\/issues)\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/SuzhouKada\/piwik\/commits\/1.0.3",
    "readmeHtml":{"description":"\n\n<p>This plugin allow you visualize links of your website by just one click installation. When user move mouse over the text links, they will see a preview picture of this link. By default, [only extra links] will have preview thumbnails. You can change the setting in the JS files.<\/p>\n\n<p><img src=\"https:\/\/github.com\/SuzhouKada\/piwik\/blob\/master\/screenshots\/visual-link-screenshot-on-domz.png\" alt=\"visual-link-screenshot-on-domz.png\" \/><\/p>\n\n",
      "faq":"<p>Who need this plugin?\nWebsite master who want to their users see the webpage thumbnail of one extra link before they open this page.\nWhat is the benefit?\nThis plugin can save end users' time. They will know whether they need go to this page or not when they see the preview image. \nIs it free?\nYes, it is totally free. But we will add a small water mark in the bottom of preview picture. The paid version does not have this limitation.\nDoes it support https?\nFree version does not support https.<\/p>",
      "documentation":"",
      "changelog":"<p><strong>1.0.0<\/strong>\n* Initial release<\/p>"},"download":"\/api\/2.0\/plugins\/page2images-visual-link\/download\/1.0.3"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"PaidPlugin1",
  "displayName":"Paid Plugin 1",
  "owner":"TestVendor",
  "description":"Clears all temporary cache files",
  "homepage":"https:\/\/github.com\/JohnDeery\/piwik-clearcache-plugin",
  "createdDateTime":"2014-12-23 01:18:01",
  "donate":{},"support":[{"name":"Documentation",
    "key":"docs",
    "value":"https:\/\/paidplugin1.org\/docs\/",
    "type":"url"},{"name":"Wiki",
    "key":"wiki",
    "value":"https:\/\/github.com\/paidplugin1\/piwik\/wiki",
    "type":"url"},{"name":"Forum",
    "key":"forum",
    "value":"https:\/\/forum.paidplugin1.org",
    "type":"url"},{"name":"Email",
    "key":"email",
    "value":"paidplugin1@example.com",
    "type":"email"},{"name":"IRC",
    "key":"irc",
    "value":"irc:\/\/freenode\/paidplugin1",
    "type":"text"},{"name":"Issues \/ Bugs",
    "key":"issues",
    "value":"https:\/\/github.com\/paidplugin1\/piwik\/issues",
    "type":"url"},{"name":"Source",
    "key":"source",
    "value":"https:\/\/github.com\/paidplugin1\/piwik\/",
    "type":"url"},{"name":"RSS",
    "key":"rss",
    "value":"https:\/\/paidplugin1.org\/feed\/",
    "type":"url"}],"isTheme":false,"keywords":["cache",
    "delete",
    "tmp"],"basePrice":100,"authors":[{"name":"John Deery",
    "email":"test3@example.com",
    "homepage":"http:\/\/fractalice.com"}],"repositoryUrl":"https:\/\/github.com\/TestVendor\/PaidPlugin1",
  "lastUpdated":null,"latestVersion":"1.1",
  "numDownloads":null,"screenshots":[],"previews":[{"type":"demo",
    "provider":"link",
    "url":"https:\/\/demo.paidplugin1.com"}],"activity":{"numCommits":null,"numContributors":null,"lastCommitDate":null},"featured":false,"isFree":false,"isPaid":true,"isCustomPlugin":false,"shop":{"url":"https:\/\/plugins.piwik.org\/PaidPlugin1",
    "variations":[{"price":"150",
      "prettyPrice":"150\u20ac",
      "currency":"EUR",
      "period":"year",
      "name":"Up to 4 users",
      "addToCartUrl":"https:\/\/plugins.piwik.org\/PaidPlugin1?add-to-cart=s&currency=EUR",
      "addToCartEmbedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?attribute_type=Up+to+4+users&add-to-cart=0&variation_id=372&wcj-currency=EUR"},{"price":"175",
      "prettyPrice":"$175",
      "currency":"USD",
      "period":"year",
      "name":"Up to 4 users",
      "addToCartUrl":"https:\/\/plugins.piwik.org\/PaidPlugin1?add-to-cart=s&currency=USD",
      "addToCartEmbedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?attribute_type=Up+to+4+users&add-to-cart=0&variation_id=372&wcj-currency=USD"},{"price":"300",
      "prettyPrice":"300\u20ac",
      "currency":"EUR",
      "period":"year",
      "name":"5 to 15 users",
      "addToCartUrl":"https:\/\/plugins.piwik.org\/PaidPlugin1?add-to-cart=m&currency=EUR",
      "addToCartEmbedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?attribute_type=5+to+15+users&add-to-cart=0&variation_id=373&wcj-currency=EUR"},{"price":"345",
      "prettyPrice":"$345",
      "currency":"USD",
      "period":"year",
      "name":"5 to 15 users",
      "addToCartUrl":"https:\/\/plugins.piwik.org\/PaidPlugin1?add-to-cart=m&currency=USD",
      "addToCartEmbedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?attribute_type=5+to+15+users&add-to-cart=0&variation_id=373&wcj-currency=USD"},{"price":"600",
      "prettyPrice":"600\u20ac",
      "currency":"EUR",
      "period":"year",
      "name":"Unlimited users",
      "addToCartUrl":"https:\/\/plugins.piwik.org\/PaidPlugin1?add-to-cart=l&currency=EUR",
      "addToCartEmbedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?attribute_type=Unlimited+users&add-to-cart=0&variation_id=374&wcj-currency=EUR"},{"price":"690",
      "prettyPrice":"$690",
      "currency":"USD",
      "period":"year",
      "name":"Unlimited users",
      "addToCartUrl":"https:\/\/plugins.piwik.org\/PaidPlugin1?add-to-cart=l&currency=USD",
      "addToCartEmbedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?attribute_type=Unlimited+users&add-to-cart=0&variation_id=374&wcj-currency=USD"}],"reviews":{"embedUrl":"http:\/\/myshop.piwik\/product\/PaidPlugin1?show_reviews=1&piwik_embed=1",
      "height":200}},"versions":[{"name":"1.1",
    "release":null,"requires":{"piwik":">=2.0.0",
      "php":">=5.3.0"},"readme":"# Piwik cacheBuster Plugin\n\n## Description\n\nThis plugin will clear out the tmp dir of Piwik. Useful for when you are developing other plugins or just need to kill that file and can't get to your installation to delete it normally\n\n## Changelog\n~2014~\n\n2014-02-21 - Update some more code, added in notification area but it's not quite working yet (TODO - make it work)\n\n2014-02-21 - Rebranded to cacheBuster and set version to 1.0, updated code to use a better check for directory seperator\n\n2014-02-20 - v2.0\n    - Updated plugin to work with Piwik 2.0.3\n\n~2013~\n    Inital creation of plugin at http:\/\/www.spherexx.com under the name ClearCache\n\n## Support\nPlease direct any feedback to john.deery@gmail.com",
    "numDownloads":null,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":null,"readmeHtml":{"description":"\n\n<p>This plugin will clear out the tmp dir of Piwik. Useful for when you are developing other plugins or just need to kill that file and can't get to your installation to delete it normally<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":null}],"isDownloadable":false,"consumer":{"license":null,"loginUrl":"https:\/\/shop.piwik.org\/my-account"}},{"name":"PerformanceInfo",
  "displayName":"Performance Info",
  "owner":"ThaDafinser",
  "description":"Piwik plugin to check if the settings are good for security\/performance",
  "homepage":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo",
  "createdDateTime":"2015-03-31 10:38:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo",
  "lastUpdated":"2015-10-14 07:16:03",
  "latestVersion":"v0.2.2",
  "numDownloads":3314,"screenshots":[],"previews":[],"activity":{"numCommits":"18",
    "numContributors":"1",
    "lastCommitDate":"2015-10-14 07:15:10"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-03-31 10:38:03",
    "requires":{"piwik":">=2.10.0",
      "php":">=5.5.0"},"readme":"",
    "numDownloads":106,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceInfo\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-04-07 06:42:03",
    "requires":{"piwik":">=2.14.0",
      "php":">=5.5.0"},"readme":"",
    "numDownloads":156,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceInfo\/download\/0.1.1"},{"name":"0.2.0",
    "release":"2015-04-27 06:04:03",
    "requires":{"piwik":">=2.13.0",
      "php":">=5.5.0"},"readme":"",
    "numDownloads":2,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceInfo\/download\/0.2.0"},{"name":"v0.2.1",
    "release":"2015-04-27 06:06:03",
    "requires":{"piwik":">=2.13.0",
      "php":">=5.5.0"},"readme":"",
    "numDownloads":1139,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceInfo\/download\/v0.2.1"},{"name":"v0.2.2",
    "release":"2015-10-14 07:16:03",
    "requires":{"piwik":">=2.13.0",
      "php":">=5.5.0"},"readme":"# Piwik ConfigurationInfo Plugin\n\n## Description\n\nThis plugin checks your configuration and compare it with some best practice settings.\n- Security\n- Performance\n- other\n\n## FAQ\n\n__Why does this plugin needs PHP 5.5?__\n\nYou look at this plugin because you care about security or performance? Then why you dont upgrade to the latest PHP version?\n",
    "numDownloads":1911,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/ThaDafinser\/Piwik-PerformanceInfo\/commits\/0.1.2",
    "readmeHtml":{"description":"\n\n<p>This plugin checks your configuration and compare it with some best practice settings.\n- Security\n- Performance\n- other<\/p>\n\n",
      "faq":"<p><strong>Why does this plugin needs PHP 5.5?<\/strong><\/p>\n\n<p>You look at this plugin because you care about security or performance? Then why you dont upgrade to the latest PHP version?<\/p>",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/PerformanceInfo\/download\/v0.2.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"PerformanceMonitor",
  "displayName":"Performance Monitor",
  "owner":"chanzler",
  "description":"Displays the performance index of a site as a widget and adds an performance overview page to the top navigation. The index is calculated by the numbe",
  "homepage":"http:\/\/github.com\/chanzler\/piwik-performance-monitor",
  "createdDateTime":"2014-08-16 19:40:04",
  "donate":{"paypal":"paypal@familiekanzler.de",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor",
  "lastUpdated":"2014-11-08 20:20:03",
  "latestVersion":"0.2.5",
  "numDownloads":8174,"screenshots":[],"previews":[],"activity":{"numCommits":"13",
    "numContributors":"1",
    "lastCommitDate":"2014-11-10 16:18:43"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-08-16 19:40:04",
    "requires":{},"readme":"",
    "numDownloads":883,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.1.0"},{"name":"0.2.0",
    "release":"2014-10-12 19:44:03",
    "requires":{"piwik":">=2.7.0"},"readme":"",
    "numDownloads":468,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2014-11-03 10:32:03",
    "requires":{"piwik":">=2.0.0"},"readme":"",
    "numDownloads":124,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.2.1"},{"name":"0.2.2",
    "release":"2014-11-04 18:18:04",
    "requires":{"piwik":">=2.0.0"},"readme":"",
    "numDownloads":3,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.2.2"},{"name":"0.2.3",
    "release":"2014-11-04 18:54:04",
    "requires":{"piwik":">=2.0.0"},"readme":"",
    "numDownloads":6,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.2.3"},{"name":"0.2.4",
    "release":"2014-11-04 20:32:03",
    "requires":{"piwik":">=2.0.0"},"readme":"",
    "numDownloads":128,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.2.4"},{"name":"0.2.5",
    "release":"2014-11-08 20:20:03",
    "requires":{"piwik":">=2.0.0"},"readme":"# Piwik PerformanceMonitor Plugin\n\n## Description\n\nThis is a plugin for the Open Source Web Analytics platform Piwik. If enabled, it will add a new widget that you can add to your dashboard and a new link in the top navigation.\n\nThe widget will show the performance index of a site that auto-refreshes every 30 seconds. It shows the number of visitors or visit time in a 30 minute period compared to the maximum number of visitors in any 30 minute period of the last 30 days.\n\nThis plugin is inspired by the [piwik barometer plugin](https:\/\/github.com\/halfdan\/piwik-barometer-plugin) and uses a lightly modified jQuery-Dynameter (original by [Tzechiu Lei](http:\/\/tze1.com\/dynameter\/).\n\n**This plugin should run fine with installations with up to 100.000 page impressions per day. If you run a very large piwik installation and have performance issues with this plugin, please contact me - there is a solution for this. I have it up and running in an installation with more than 5 million visits per day.**\n\n(Tested with piwik 2.7.0, but supposed to run with older versions)\n\n## Installation\n\nInstall it via Piwik Marketplace OR install manually:\n\n1. Clone the plugin into the plugins directory of your Piwik installation.\n\n   ```\n   cd plugins\/\n   git clone https:\/\/github.com\/chanzler\/piwik-performance-monitor.git PerformanceMonitor\n   ```\n\n2. Login as superuser into your Piwik installation and activate the plugin under Settings -> Plugins\n\n3. You will now find the widget under the Live! section.\n\n4. When you update: As there have been made several changes in v0.2.0 you might have to clear your cache (console core:clear-caches) \n\n## FAQ\n\n###Features\nHere is a list of features that are included in this project:\n\n* Live widget (\"Performance Monitor\") with key performance indices\n* Add an item to the top navigation (\"Performance overview\") which displays the performance monitor widget for all your sites (configurable).\n\n###Configuration\n*Refresh interval*: Defines how often the widgets will be updated. Every 30 seconds is a good value to choose.\n\n*Measurement period*: Defines the measurement period in minutes. 5 minutes is a good value to choose.\n\n*Comparison period*: Defines the period (x * 24h) the last 30 minutes are compared to. A good value for small sites with more or less static content is 30. For sites with peak days on weekends for example 1 will be a good value. 1 is also a good value for very big sites with a lot of traffic. You will have to play around with this value a little bit and figure out whalt will fit your needs.\n\n*Sites in overview*: Defines which sites are displayed in the overview.  \n\n## Changelog\n\n### 0.2.5 Bugfix Release\n* fixed bug with timezones that match \/^UTC[+-]*\/\n\n### 0.2.4 Bugfix Release\n* reengineering of scheduled task\n\n### 0.2.3 Bugfix Release\n* fixed bug in scheduled task\n\n### 0.2.2 Bugfix Release\n* fixed an installation bug\n\n### 0.2.0 Second Beta\n* made the plugin configurable by settings\n* added more key performance indices\n* performance overview now links to the dashboards\n* fixed the timezone bug (configure timezone for each site properly)\n* fixed several minor bugs\n\n### 0.1.0 First Beta\n* initial release\n\n## License\n\nGPL v3 or later\n\n## Support\n\n* Please direct any feedback to [frank@intersolve.de](mailto:frank@intersolve.de)\n\n## Contribute\n\nIf you are interested in contributing to this plugin, feel free to send pull requests!\n\n",
    "numDownloads":6562,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-performance-monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for the Open Source Web Analytics platform Piwik. If enabled, it will add a new widget that you can add to your dashboard and a new link in the top navigation.<\/p>\n\n<p>The widget will show the performance index of a site that auto-refreshes every 30 seconds. It shows the number of visitors or visit time in a 30 minute period compared to the maximum number of visitors in any 30 minute period of the last 30 days.<\/p>\n\n<p>This plugin is inspired by the <a href=\"https:\/\/github.com\/halfdan\/piwik-barometer-plugin\">piwik barometer plugin<\/a> and uses a lightly modified jQuery-Dynameter (original by <a href=\"http:\/\/tze1.com\/dynameter\/\">Tzechiu Lei<\/a>.<\/p>\n\n<p><strong>This plugin should run fine with installations with up to 100.000 page impressions per day. If you run a very large piwik installation and have performance issues with this plugin, please contact me - there is a solution for this. I have it up and running in an installation with more than 5 million visits per day.<\/strong><\/p>\n\n<p>(Tested with piwik 2.7.0, but supposed to run with older versions)<\/p>\n\n",
      "faq":"<h3>Features<\/h3>\n\n<p>Here is a list of features that are included in this project:<\/p>\n\n<ul><li>Live widget (\"Performance Monitor\") with key performance indices<\/li>\n<li>Add an item to the top navigation (\"Performance overview\") which displays the performance monitor widget for all your sites (configurable).<\/li>\n<\/ul><h3>Configuration<\/h3>\n\n<p><em>Refresh interval<\/em>: Defines how often the widgets will be updated. Every 30 seconds is a good value to choose.<\/p>\n\n<p><em>Measurement period<\/em>: Defines the measurement period in minutes. 5 minutes is a good value to choose.<\/p>\n\n<p><em>Comparison period<\/em>: Defines the period (x * 24h) the last 30 minutes are compared to. A good value for small sites with more or less static content is 30. For sites with peak days on weekends for example 1 will be a good value. 1 is also a good value for very big sites with a lot of traffic. You will have to play around with this value a little bit and figure out whalt will fit your needs.<\/p>\n\n<p><em>Sites in overview<\/em>: Defines which sites are displayed in the overview.<\/p>",
      "documentation":"",
      "changelog":"<h3>0.2.5 Bugfix Release<\/h3>\n\n<ul><li>fixed bug with timezones that match \/^UTC[+-]*\/<\/li>\n<\/ul><h3>0.2.4 Bugfix Release<\/h3>\n\n<ul><li>reengineering of scheduled task<\/li>\n<\/ul><h3>0.2.3 Bugfix Release<\/h3>\n\n<ul><li>fixed bug in scheduled task<\/li>\n<\/ul><h3>0.2.2 Bugfix Release<\/h3>\n\n<ul><li>fixed an installation bug<\/li>\n<\/ul><h3>0.2.0 Second Beta<\/h3>\n\n<ul><li>made the plugin configurable by settings<\/li>\n<li>added more key performance indices<\/li>\n<li>performance overview now links to the dashboards<\/li>\n<li>fixed the timezone bug (configure timezone for each site properly)<\/li>\n<li>fixed several minor bugs<\/li>\n<\/ul><h3>0.1.0 First Beta<\/h3>\n\n<ul><li>initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/PerformanceMonitor\/download\/0.2.5"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"PlatformsReport",
  "displayName":"Platforms Report",
  "owner":"PiwikPRO",
  "description":"New report in Visitors > Platforms that aggregates visits based on device type, OS version & browser version.",
  "homepage":"http:\/\/piwik.pro",
  "createdDateTime":"2015-10-27 02:06:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-PlatformsReport",
  "lastUpdated":"2016-01-04 08:42:03",
  "latestVersion":"1.0.4",
  "numDownloads":2347,"screenshots":[],"previews":[],"activity":{"numCommits":"24",
    "numContributors":"3",
    "lastCommitDate":"2016-03-15 04:25:00"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.0",
    "release":"2015-10-27 02:06:03",
    "requires":{"piwik":">=2.14.3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-PlatformsReport\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PlatformsReport\/download\/1.0.0"},{"name":"1.0.1",
    "release":"2015-10-27 02:14:03",
    "requires":{"piwik":">=2.14.3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-PlatformsReport\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PlatformsReport\/download\/1.0.1"},{"name":"1.0.2",
    "release":"2015-10-27 02:30:04",
    "requires":{"piwik":">=2.14.3"},"readme":"",
    "numDownloads":100,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-PlatformsReport\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PlatformsReport\/download\/1.0.2"},{"name":"1.0.3",
    "release":"2015-10-29 23:52:03",
    "requires":{"piwik":">=2.14.3"},"readme":"",
    "numDownloads":777,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-PlatformsReport\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/PlatformsReport\/download\/1.0.3"},{"name":"1.0.4",
    "release":"2016-01-04 08:42:03",
    "requires":{"piwik":">=2.14.3"},"readme":"# Piwik PlatformReports Plugin\n\n## Description\n\nIncludes two new reports: Platforms and Platforms With Versions. \n\nThe **Platforms** report displays visitors by their device type, OS and browser.\n\nThe **Platforms With Versions** report displays the same information, but includes OS version & browser version information.\n\nThe new reports are available via the Visitors > Platforms menu.\n\n## Changelog\n\n- 1.0.3\n  * Moved sub-menu entry after 'Software'\n- 1.0.2\n  * Initial release on Marketplace.\n- 1.0.0\n  * Initial release.\n",
    "numDownloads":1470,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-PlatformsReport\/commits\/1.0.1",
    "readmeHtml":{"description":"\n\n<p>Includes two new reports: Platforms and Platforms With Versions.<\/p>\n\n<p>The <strong>Platforms<\/strong> report displays visitors by their device type, OS and browser.<\/p>\n\n<p>The <strong>Platforms With Versions<\/strong> report displays the same information, but includes OS version &amp; browser version information.<\/p>\n\n<p>The new reports are available via the Visitors &gt; Platforms menu.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>1.0.3\n\n<ul><li>Moved sub-menu entry after 'Software'<\/li>\n<\/ul><\/li>\n<li>1.0.2\n\n<ul><li>Initial release on Marketplace.<\/li>\n<\/ul><\/li>\n<li>1.0.0\n\n<ul><li>Initial release.<\/li>\n<\/ul><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/PlatformsReport\/download\/1.0.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"QueuedTracking",
  "displayName":"Queued Tracking",
  "owner":"piwik",
  "description":"Scale your large traffic Piwik service by queuing tracking requests in Redis for better performance. ",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2015-01-05 23:28:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking",
  "lastUpdated":"2016-04-19 02:26:04",
  "latestVersion":"0.3.1",
  "numDownloads":5296,"screenshots":[],"previews":[],"activity":{"numCommits":"115",
    "numContributors":"4",
    "lastCommitDate":"2016-06-02 09:32:10"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-01-05 23:28:05",
    "requires":{"piwik":">=2.10.0-b10"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/1.0.7",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-01-06 00:48:04",
    "requires":{"piwik":">=2.10.0-b10"},"readme":"",
    "numDownloads":487,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/1.0.7",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2015-03-09 05:56:04",
    "requires":{"piwik":">=2.10.0"},"readme":"",
    "numDownloads":221,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2015-03-31 21:44:04",
    "requires":{"piwik":">=2.10.0"},"readme":"",
    "numDownloads":611,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2015-06-09 21:38:04",
    "requires":{"piwik":">=2.13.0"},"readme":"",
    "numDownloads":80,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.4"},{"name":"0.1.5",
    "release":"2015-06-11 21:56:04",
    "requires":{"piwik":">=2.13.0"},"readme":"",
    "numDownloads":163,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.5"},{"name":"0.1.6",
    "release":"2015-06-22 01:00:05",
    "requires":{"piwik":">=2.13.0"},"readme":"",
    "numDownloads":328,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.6"},{"name":"0.1.7",
    "release":"2015-07-24 12:44:05",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":26,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.7"},{"name":"0.1.8",
    "release":"2015-07-25 08:08:04",
    "requires":{"piwik":">=2.14.2"},"readme":"",
    "numDownloads":736,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.1.8"},{"name":"0.2.0",
    "release":"2015-10-21 22:36:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":481,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2015-12-14 20:46:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/0.44",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.1"},{"name":"0.2.2",
    "release":"2015-12-14 21:02:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":31,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.2"},{"name":"0.2.3",
    "release":"2015-12-15 21:06:05",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":5,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.3"},{"name":"0.2.4",
    "release":"2015-12-15 21:58:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":350,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/1.0.4",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.4"},{"name":"0.2.5",
    "release":"2016-01-13 19:58:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":480,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/1.0.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.5"},{"name":"0.2.6",
    "release":"2016-02-16 16:06:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":426,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.2.6"},{"name":"0.3.0",
    "release":"2016-03-14 19:00:04",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":404,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/0.6.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.3.0"},{"name":"0.3.1",
    "release":"2016-04-19 02:26:04",
    "requires":{"piwik":">=2.16.0"},"readme":"# Piwik QueuedTracking Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/piwik\/plugin-QueuedTracking.svg?branch=master)](https:\/\/travis-ci.org\/piwik\/plugin-QueuedTracking)\n\n## Description\n\nThis plugin writes all tracking requests into a [Redis](http:\/\/redis.io\/) instance instead of directly into the database.\nThis is useful if you have too many requests per second and your server cannot handle all of them directly (eg too many connections in nginx or MySQL).\nIt is also useful if you experience peaks sometimes. Those peaks can be handled much better by using this queue.\nWriting a tracking request into the queue is very fast (a tracking request takes in total a few milliseconds) compared to a regular tracking request (that takes multiple hundreds of milliseconds). The queue makes sure to process the tracking requests whenever possible even if it takes a while to process all requests after there was a peak.\n\n*This plugin is currently BETA and there might be issues causing not tracked requests, wrongly tracked requests or duplicated tracked requests.*\n\nHave a look at the FAQ for more information.\n\n## FAQ\n\n__What are the requirements for this plugin?__\n\n* [Redis server 2.8+](http:\/\/redis.io\/) - [Redis quickstart](http:\/\/redis.io\/topics\/quickstart)\n* [phpredis PHP extension](https:\/\/github.com\/nicolasff\/phpredis) - [Install](https:\/\/github.com\/nicolasff\/phpredis#installingconfiguring)\n* Transactions are used and must be supported by the SQL database.\n\n__Where can I configure and enable the queue?__\n\nIn your Piwik instance go to \"Settings => Plugin Settings\". There is a config section for this plugin.\n\n__When will a queued tracking request be processed?__\n\nFirst you should know that multiple tracking requests will be inserted into the database at once using\n[bulk tracking](http:\/\/developer.piwik.org\/api-reference\/tracking-api#bulk-tracking) as soon as a configurable number\nof requests is queued. By default we will check whether enough requests are queued during a regular tracking request\nand start processing them right after sending a response to the browser to make sure a user won't have to wait until\nthe queue has finished to process all requests. Have a look at this graph to see how it works:\n\n![How it works](https:\/\/raw.githubusercontent.com\/piwik\/plugin-QueuedTracking\/master\/docs\/How_it_works.png)\n\n__I do not want to process queued requests within a tracking request, what shall I do?__\n\nDon't worry, if this solution doesn't work out for you for some reason you can disable it and process all queued\nrequests using the [Piwik console](http:\/\/developer.piwik.org\/guides\/piwik-on-the-command-line). Just follow these steps:\n\n* Disable the setting \"Process during tracking request\" in the Piwik UI under \"Settings => Plugin Settings\"\n* Setup a cronjob that executes the command `.\/console queuedtracking:process` for instance every minute\n* That's it\n\nThe `queuedtracking:process` command will make sure to process all queued tracking requests whenever possible and the\ncommand will exit as soon as there are not enough requests queued anymore. That's why you should setup a cronjob to start\nthe command every minute as it will just start processing again as soon as there are enough requests. Be aware that it won't\nspeed up processing queued requests when starting this command multiple times. Only one process will actually replay\nqueued requests at a time.\n\nExample crontab entry that starts the processor every minute:\n\n`* * * * * cd \/piwik && .\/console queuedtracking:process >\/dev\/null 2>&1`\n\n__Can I keep track of the state of the queue?__\n\nYes, you can. Just execute the command `.\/console queuedtracking:monitor`. This will show the current state of the queue.\n\n__Can I improve the speed of inserting requests from the Redis queue to the database?__\n\nYes, you can by adding more workers. By default only one worker is activated at a time and only one worker processes tracking requests from Redis to the database. When inserting tracking requests into the database, at time of writing this, about 80% of the time is spent in PHP and the database might be rather bored. If you have multiple CPUs available on your server you can add more workers. You can do this by going in the Piwik Admin interface to \"Plugin Settings\". There will be a setting \"Number of queue workers\". Increase this number to the number of CPUs you want to dedeciate for processing requests. Best practice is to add more workers step by step. So first increase this number to 2 and check if the tracking request insertions is fast enough for you. If not and you have more CPUs available, increase the number again.\n\nWhen using multiple workers it might be worth to lower the number of \"Number of requests to process\" to eg 15 in \"Plugin Settings\". By default 25 requests are inserted in one step by using transactions. This means different workers might have to wait for each other. By lowering that number each worker will block the DB for less time.\n\nIf you process requests from the command line via `.\/console queuedtracking:process` make sure to always start enough workers. Each time you execute this command one worker will be started. If already enough workers are in process no new worker will be started and the command just finishes immediately.\n\n__How fast are the requests inserted from Redis to the Database?__\n\nThis very much depends on your setup and hardware. With fast CPUs you can achive up to 250req\/s with 1 worker, 400req\/s with 2 workers and 1500req\/s with 8 workers (tested on a AWS c3.x2large instance).\n\n__How should the redis server be configured?__\n\nMake sure to have enough memory to save all tracking requests in the queue. One tracking request in the queue takes about 2KB,\n20.000 tracking requests take about 50MB. All tracking requests of all websites are stored in the same queue.\nThere should be only one Redis server to make sure the data will be replayed in the same order as they were recorded.\nIf you want to configure Redis HA (High Availability) it is possible to use Redis Sentinel see further down.\nWe currently write into the Redis default database by default but you can configure to use a different one.\n\n__Why do some tests fail on my local Piwik instance?__\n\nMake sure the requirements mentioned above are met and Redis needs to run on 127.0.0.1:6379 with no password for the\nintegration tests to work. It will use the database \"15\" and the tests may flush all data it contains. Make sure\nit does not contain any important data.\n\n__What if I want to disable the queue?__\n\nYou might want to disable the queue at some point but there are still some pending requests in the queue. We recommend to\nchange the \"Number of requests to process\" in plugin settings to \"1\" and process all requests using the command\n`.\/console queuedtracking:process` shortly before disabling the queue and directly afterwards. It is still possible to\nprocess remaining request once the queue is disabled but new tracking requests won't be written into the queue.\n\n__How can I access Redis data?__\n\nYou can either acccess data on the command line via `redis-cli` or use a Redis monitor like [phpRedisAdmin](https:\/\/github.com\/ErikDubbelboer\/phpRedisAdmin).\nIn case you are using something like a Redis monitor make sure it is not accessible by everyone.\n\n__The processor won't start processing again as it things another processor is processing the data already, what can I do?__\n\nFirst make sure there is actually no processor processing any requests. For example by executing the command\n`.\/console queuedtracking:monitor`. In case you are using the command line to process tracking requests make sure there\nis no processer running using the Linux command `ps`. If you are sure there is no process running you can release the lock\nby executing the command `.\/console queuedtracking:lock-status`. This will output more information which locks are in use and how to unlock them. Afterwards everything should work as normal again.\nYou should actually never have to do this as a lock automatically expires after a while. It just may take a while depending\non the amount of requests you are importing.\n\n__How can I test my Redis \/ QueuedTracking setup in case I'm getting errors?__\n\nThere is a command to test some the connection to Redis as well as some needed features: `.\/console queuedtracking:test`.\n\nIt might directly give you an error message if something goes wrong that helps you to resolve the issue. If your queue\nis always locked you might be as well interested in executing `.console queuedtracking:lock-status`.\n\n__How can I debug in case something goes wrong?__\n\n* Use the command `.\/console queuedtracking:monitor` to view the current state of all workers\n* Use the command `.\/console queuedtracking:lock-status` to view the current state of all locks\n* Set the option `-vvv` when processing via `.\/console queuedtracking:process -vvv` to enable the tracker debug mode for this run. This will print detailed information to screen.\n* Enable tracker mode in `config.ini.php` via `[Tracker] debug=1` if processing requests during tracking is enabled.\n* Use the command `.\/console queuedtracking:print-queued-requests` to view the next requests to process in each queue. If you execute this command twice within 1-10 minutes, and it outputs the same, the queue is not being processed most likely indicating a problem.\n\n__I am using the Log Importer in combination with Queued Tracking, is there something to consider?__\n\nYes, we recommend to set the \"Number of requests to process\" to `1` as the log importer usually sends multiple requests at once using bulk tracking already.\n\n__How can I configure the QueuedTracking plugin to use Redis Sentinel?__\n\nYou can enable the Sentinel in the plugin settings. Make sure to specify the correct Sentinel \"master\" name.\n\nWhen using Sentinel, the `phpredis` extension is not needed as it uses a PHP class to connect to your Redis. Please note that calls to Redis might be a little bit slower.\n\n__Can I configure multiple Sentinel servers?__\n\nYes, once Sentinel is enabled you can configure multiple servers by specifying multiple hosts and ports comma separated via the UI.\n\n__Are there any known issues?__\n\n* In case you are using bulk tracking the bulk tracking response varies compared to the regular one. We will always return\n either an image or a 204 HTTP response code in case the parameter `send_image=0` is sent.\n* Anything related with Cookies won't work\n* By design this plugin can delay the insertion of tracking requests causing real time plugins to not show the actual data since\n under load tracking requests may take a while until they are replayed.\n\n## Changelog\n\n0.3.1\n\n- Fixed Redis Sentinel was not working properly. Sentinel can be now configured via the UI and not via config. Also\n  multiple servers can be configured now.\n\n0.3.0\n\n- Added support to use Redis Sentinel for automatic failover\n\n0.2.6\n\n- When a request takes more than 2 seconds and debug tracker mode is enabled, log information about the request.\n\n0.2.5\n\n- Use a better random number generator if available on the system to more evenly process queues.\n\n0.2.4\n\n- The command `queuedtracking:monitor` will now work even when the queue is disabled\n\n0.2.3\n\n- Added more tests and information to the `queuedtracking:test` command\n- It is now possible to configure up to 16 workers\n\n0.2.2\n\n- Improved output for the new `test` command\n- New FAQ entries\n\n0.2.1\n\n- Added a new command to test the connection to Redis. To test yor connection use `.\/console queuedtracking:test`\n\n0.2.0\n\n- Compatibility w\/ Piwik 2.15.\n\n0.1.6\n \n- For bulk requests we do no longer skip all tracking requests after a tracking request that has an invalid `idSite` set. The same behaviour was changed in Piwik 2.14 for regular bulk requests.\n\n0.1.5\n\n- Fixed a notice in case an incompatible Redis version is used.\n\n0.1.4\n\n- It is now possible to start multiple workers for faster insertion from Redis to the database. This can be configured in the \"Plugin Settings\"\n- Monitor does now output information whether a processor is currently processing the queue.\n- Added a new command `queuedtracking:lock-status` that outputs the status of each queue lock. This command can also unlock a queue by using the option `--unlock`.\n- Added a new command `queuedtracking:print-queued-requests` that outputs the next requests to process in each queue.\n- If someone passes the option `-vvv` to `.\/console queuedtracking:process` the Tracker debug mode will be enabled and additional information will be printed to the screen.\n\n0.1.2\n\n- Updated description on Marketplace\n\n0.1.0\n\n- Initial Release\n\n## Support\n\nPlease direct any feedback to [hello@piwik.org](mailto:hello@piwik.org). In case of any issues with the plugin or\nfeature wishes create a new issues here: https:\/\/github.com\/piwik\/plugin-QueuedTracking\/issues . In case you experience\nany problems please post the output of `.\/console queuedtracking:test` in the issue.\n\n## TODO\n\nFor usage with multiple redis servers we should lock differently:\nhttp:\/\/redis.io\/topics\/distlock eg using https:\/\/github.com\/ronnylt\/redlock-php\n",
    "numDownloads":466,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-QueuedTracking\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This plugin writes all tracking requests into a <a href=\"http:\/\/redis.io\/\">Redis<\/a> instance instead of directly into the database.\nThis is useful if you have too many requests per second and your server cannot handle all of them directly (eg too many connections in nginx or MySQL).\nIt is also useful if you experience peaks sometimes. Those peaks can be handled much better by using this queue.\nWriting a tracking request into the queue is very fast (a tracking request takes in total a few milliseconds) compared to a regular tracking request (that takes multiple hundreds of milliseconds). The queue makes sure to process the tracking requests whenever possible even if it takes a while to process all requests after there was a peak.<\/p>\n\n<p><em>This plugin is currently BETA and there might be issues causing not tracked requests, wrongly tracked requests or duplicated tracked requests.<\/em><\/p>\n\n<p>Have a look at the FAQ for more information.<\/p>\n\n",
      "faq":"<p><strong>What are the requirements for this plugin?<\/strong><\/p>\n\n<ul><li><a href=\"http:\/\/redis.io\/\">Redis server 2.8+<\/a> - <a href=\"http:\/\/redis.io\/topics\/quickstart\">Redis quickstart<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/nicolasff\/phpredis\">phpredis PHP extension<\/a> - <a href=\"https:\/\/github.com\/nicolasff\/phpredis#installingconfiguring\">Install<\/a><\/li>\n<li>Transactions are used and must be supported by the SQL database.<\/li>\n<\/ul><p><strong>Where can I configure and enable the queue?<\/strong><\/p>\n\n<p>In your Piwik instance go to \"Settings =&gt; Plugin Settings\". There is a config section for this plugin.<\/p>\n\n<p><strong>When will a queued tracking request be processed?<\/strong><\/p>\n\n<p>First you should know that multiple tracking requests will be inserted into the database at once using\n<a href=\"http:\/\/developer.piwik.org\/api-reference\/tracking-api#bulk-tracking\">bulk tracking<\/a> as soon as a configurable number\nof requests is queued. By default we will check whether enough requests are queued during a regular tracking request\nand start processing them right after sending a response to the browser to make sure a user won't have to wait until\nthe queue has finished to process all requests. Have a look at this graph to see how it works:<\/p>\n\n<p><img src=\"https:\/\/raw.githubusercontent.com\/piwik\/plugin-QueuedTracking\/master\/docs\/How_it_works.png\" alt=\"How_it_works.png\" \/><\/p>\n\n<p><strong>I do not want to process queued requests within a tracking request, what shall I do?<\/strong><\/p>\n\n<p>Don't worry, if this solution doesn't work out for you for some reason you can disable it and process all queued\nrequests using the <a href=\"http:\/\/developer.piwik.org\/guides\/piwik-on-the-command-line\">Piwik console<\/a>. Just follow these steps:<\/p>\n\n<ul><li>Disable the setting \"Process during tracking request\" in the Piwik UI under \"Settings =&gt; Plugin Settings\"<\/li>\n<li>Setup a cronjob that executes the command <code>.\/console queuedtracking:process<\/code> for instance every minute<\/li>\n<li>That's it<\/li>\n<\/ul><p>The <code>queuedtracking:process<\/code> command will make sure to process all queued tracking requests whenever possible and the\ncommand will exit as soon as there are not enough requests queued anymore. That's why you should setup a cronjob to start\nthe command every minute as it will just start processing again as soon as there are enough requests. Be aware that it won't\nspeed up processing queued requests when starting this command multiple times. Only one process will actually replay\nqueued requests at a time.<\/p>\n\n<p>Example crontab entry that starts the processor every minute:<\/p>\n\n<p><code>* * * * * cd \/piwik &amp;&amp; .\/console queuedtracking:process &gt;\/dev\/null 2&gt;&amp;1<\/code><\/p>\n\n<p><strong>Can I keep track of the state of the queue?<\/strong><\/p>\n\n<p>Yes, you can. Just execute the command <code>.\/console queuedtracking:monitor<\/code>. This will show the current state of the queue.<\/p>\n\n<p><strong>Can I improve the speed of inserting requests from the Redis queue to the database?<\/strong><\/p>\n\n<p>Yes, you can by adding more workers. By default only one worker is activated at a time and only one worker processes tracking requests from Redis to the database. When inserting tracking requests into the database, at time of writing this, about 80% of the time is spent in PHP and the database might be rather bored. If you have multiple CPUs available on your server you can add more workers. You can do this by going in the Piwik Admin interface to \"Plugin Settings\". There will be a setting \"Number of queue workers\". Increase this number to the number of CPUs you want to dedeciate for processing requests. Best practice is to add more workers step by step. So first increase this number to 2 and check if the tracking request insertions is fast enough for you. If not and you have more CPUs available, increase the number again.<\/p>\n\n<p>When using multiple workers it might be worth to lower the number of \"Number of requests to process\" to eg 15 in \"Plugin Settings\". By default 25 requests are inserted in one step by using transactions. This means different workers might have to wait for each other. By lowering that number each worker will block the DB for less time.<\/p>\n\n<p>If you process requests from the command line via <code>.\/console queuedtracking:process<\/code> make sure to always start enough workers. Each time you execute this command one worker will be started. If already enough workers are in process no new worker will be started and the command just finishes immediately.<\/p>\n\n<p><strong>How fast are the requests inserted from Redis to the Database?<\/strong><\/p>\n\n<p>This very much depends on your setup and hardware. With fast CPUs you can achive up to 250req\/s with 1 worker, 400req\/s with 2 workers and 1500req\/s with 8 workers (tested on a AWS c3.x2large instance).<\/p>\n\n<p><strong>How should the redis server be configured?<\/strong><\/p>\n\n<p>Make sure to have enough memory to save all tracking requests in the queue. One tracking request in the queue takes about 2KB,\n20.000 tracking requests take about 50MB. All tracking requests of all websites are stored in the same queue.\nThere should be only one Redis server to make sure the data will be replayed in the same order as they were recorded.\nIf you want to configure Redis HA (High Availability) it is possible to use Redis Sentinel see further down.\nWe currently write into the Redis default database by default but you can configure to use a different one.<\/p>\n\n<p><strong>Why do some tests fail on my local Piwik instance?<\/strong><\/p>\n\n<p>Make sure the requirements mentioned above are met and Redis needs to run on 127.0.0.1:6379 with no password for the\nintegration tests to work. It will use the database \"15\" and the tests may flush all data it contains. Make sure\nit does not contain any important data.<\/p>\n\n<p><strong>What if I want to disable the queue?<\/strong><\/p>\n\n<p>You might want to disable the queue at some point but there are still some pending requests in the queue. We recommend to\nchange the \"Number of requests to process\" in plugin settings to \"1\" and process all requests using the command\n<code>.\/console queuedtracking:process<\/code> shortly before disabling the queue and directly afterwards. It is still possible to\nprocess remaining request once the queue is disabled but new tracking requests won't be written into the queue.<\/p>\n\n<p><strong>How can I access Redis data?<\/strong><\/p>\n\n<p>You can either acccess data on the command line via <code>redis-cli<\/code> or use a Redis monitor like <a href=\"https:\/\/github.com\/ErikDubbelboer\/phpRedisAdmin\">phpRedisAdmin<\/a>.\nIn case you are using something like a Redis monitor make sure it is not accessible by everyone.<\/p>\n\n<p><strong>The processor won't start processing again as it things another processor is processing the data already, what can I do?<\/strong><\/p>\n\n<p>First make sure there is actually no processor processing any requests. For example by executing the command\n<code>.\/console queuedtracking:monitor<\/code>. In case you are using the command line to process tracking requests make sure there\nis no processer running using the Linux command <code>ps<\/code>. If you are sure there is no process running you can release the lock\nby executing the command <code>.\/console queuedtracking:lock-status<\/code>. This will output more information which locks are in use and how to unlock them. Afterwards everything should work as normal again.\nYou should actually never have to do this as a lock automatically expires after a while. It just may take a while depending\non the amount of requests you are importing.<\/p>\n\n<p><strong>How can I test my Redis \/ QueuedTracking setup in case I'm getting errors?<\/strong><\/p>\n\n<p>There is a command to test some the connection to Redis as well as some needed features: <code>.\/console queuedtracking:test<\/code>.<\/p>\n\n<p>It might directly give you an error message if something goes wrong that helps you to resolve the issue. If your queue\nis always locked you might be as well interested in executing <code>.console queuedtracking:lock-status<\/code>.<\/p>\n\n<p><strong>How can I debug in case something goes wrong?<\/strong><\/p>\n\n<ul><li>Use the command <code>.\/console queuedtracking:monitor<\/code> to view the current state of all workers<\/li>\n<li>Use the command <code>.\/console queuedtracking:lock-status<\/code> to view the current state of all locks<\/li>\n<li>Set the option <code>-vvv<\/code> when processing via <code>.\/console queuedtracking:process -vvv<\/code> to enable the tracker debug mode for this run. This will print detailed information to screen.<\/li>\n<li>Enable tracker mode in <code>config.ini.php<\/code> via <code>[Tracker] debug=1<\/code> if processing requests during tracking is enabled.<\/li>\n<li>Use the command <code>.\/console queuedtracking:print-queued-requests<\/code> to view the next requests to process in each queue. If you execute this command twice within 1-10 minutes, and it outputs the same, the queue is not being processed most likely indicating a problem.<\/li>\n<\/ul><p><strong>I am using the Log Importer in combination with Queued Tracking, is there something to consider?<\/strong><\/p>\n\n<p>Yes, we recommend to set the \"Number of requests to process\" to <code>1<\/code> as the log importer usually sends multiple requests at once using bulk tracking already.<\/p>\n\n<p><strong>How can I configure the QueuedTracking plugin to use Redis Sentinel?<\/strong><\/p>\n\n<p>You can enable the Sentinel in the plugin settings. Make sure to specify the correct Sentinel \"master\" name.<\/p>\n\n<p>When using Sentinel, the <code>phpredis<\/code> extension is not needed as it uses a PHP class to connect to your Redis. Please note that calls to Redis might be a little bit slower.<\/p>\n\n<p><strong>Can I configure multiple Sentinel servers?<\/strong><\/p>\n\n<p>Yes, once Sentinel is enabled you can configure multiple servers by specifying multiple hosts and ports comma separated via the UI.<\/p>\n\n<p><strong>Are there any known issues?<\/strong><\/p>\n\n<ul><li>In case you are using bulk tracking the bulk tracking response varies compared to the regular one. We will always return\neither an image or a 204 HTTP response code in case the parameter <code>send_image=0<\/code> is sent.<\/li>\n<li>Anything related with Cookies won't work<\/li>\n<li>By design this plugin can delay the insertion of tracking requests causing real time plugins to not show the actual data since\nunder load tracking requests may take a while until they are replayed.<\/li>\n<\/ul>",
      "documentation":"",
      "changelog":"<p>0.3.1<\/p>\n\n<ul><li>Fixed Redis Sentinel was not working properly. Sentinel can be now configured via the UI and not via config. Also\nmultiple servers can be configured now.<\/li>\n<\/ul><p>0.3.0<\/p>\n\n<ul><li>Added support to use Redis Sentinel for automatic failover<\/li>\n<\/ul><p>0.2.6<\/p>\n\n<ul><li>When a request takes more than 2 seconds and debug tracker mode is enabled, log information about the request.<\/li>\n<\/ul><p>0.2.5<\/p>\n\n<ul><li>Use a better random number generator if available on the system to more evenly process queues.<\/li>\n<\/ul><p>0.2.4<\/p>\n\n<ul><li>The command <code>queuedtracking:monitor<\/code> will now work even when the queue is disabled<\/li>\n<\/ul><p>0.2.3<\/p>\n\n<ul><li>Added more tests and information to the <code>queuedtracking:test<\/code> command<\/li>\n<li>It is now possible to configure up to 16 workers<\/li>\n<\/ul><p>0.2.2<\/p>\n\n<ul><li>Improved output for the new <code>test<\/code> command<\/li>\n<li>New FAQ entries<\/li>\n<\/ul><p>0.2.1<\/p>\n\n<ul><li>Added a new command to test the connection to Redis. To test yor connection use <code>.\/console queuedtracking:test<\/code><\/li>\n<\/ul><p>0.2.0<\/p>\n\n<ul><li>Compatibility w\/ Piwik 2.15.<\/li>\n<\/ul><p>0.1.6<\/p>\n\n<ul><li>For bulk requests we do no longer skip all tracking requests after a tracking request that has an invalid <code>idSite<\/code> set. The same behaviour was changed in Piwik 2.14 for regular bulk requests.<\/li>\n<\/ul><p>0.1.5<\/p>\n\n<ul><li>Fixed a notice in case an incompatible Redis version is used.<\/li>\n<\/ul><p>0.1.4<\/p>\n\n<ul><li>It is now possible to start multiple workers for faster insertion from Redis to the database. This can be configured in the \"Plugin Settings\"<\/li>\n<li>Monitor does now output information whether a processor is currently processing the queue.<\/li>\n<li>Added a new command <code>queuedtracking:lock-status<\/code> that outputs the status of each queue lock. This command can also unlock a queue by using the option <code>--unlock<\/code>.<\/li>\n<li>Added a new command <code>queuedtracking:print-queued-requests<\/code> that outputs the next requests to process in each queue.<\/li>\n<li>If someone passes the option <code>-vvv<\/code> to <code>.\/console queuedtracking:process<\/code> the Tracker debug mode will be enabled and additional information will be printed to the screen.<\/li>\n<\/ul><p>0.1.2<\/p>\n\n<ul><li>Updated description on Marketplace<\/li>\n<\/ul><p>0.1.0<\/p>\n\n<ul><li>Initial Release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/QueuedTracking\/download\/0.3.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ReferrersManager",
  "displayName":"Referrers Manager",
  "owner":"sgiehl",
  "description":"This plugin allows to view and manage search engines and social networks that are recognized with piwik.",
  "homepage":"http:\/\/github.com\/sgiehl\/piwik-plugin-ReferrersManager",
  "createdDateTime":"2014-12-23 01:14:53",
  "donate":{"paypal":"test3@example.com",
    "flattr":null,"bitcoin":null},"support":[],"isTheme":false,"keywords":["referrer",
    "search",
    "engine",
    "social"],"basePrice":0,"authors":[{"name":"Stefan Giehl",
    "email":"test9@example.com",
    "homepage":"http:\/\/github.com\/sgiehl"}],"repositoryUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ReferrersManager",
  "lastUpdated":"2014-12-23 01:15:17",
  "latestVersion":"1.1",
  "numDownloads":0,"screenshots":[],"previews":[],"activity":{"numCommits":"72",
    "numContributors":"1",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0",
    "release":"2014-12-23 01:14:53",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ReferrersManager\/commits\/v1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ReferrersManager\/download\/1.0"},{"name":"1.1",
    "release":"2014-12-23 01:15:17",
    "requires":{"piwik":">=2.0.4",
      "php":">=5.3.0"},"readme":"# Piwik Referrers Manager Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/sgiehl\/piwik-plugin-ReferrersManager.png?branch=master)](https:\/\/travis-ci.org\/sgiehl\/piwik-plugin-ReferrersManager) [![Flattr this git repo](http:\/\/api.flattr.com\/button\/flattr-badge-large.png)](https:\/\/flattr.com\/submit\/auto?user_id=sgiehl&url=https:\/\/github.com\/sgiehl\/piwik-plugin-ReferrersManager&title=Piwik Plugin Referrers Manager&language=&tags=github&category=software) \n\n\n## Description\n\nThis plugin allows to view and manage custom search engines and social networks that are recognized with piwik.\n\n### Requirements\n\n[Piwik](https:\/\/github.com\/piwik\/piwik) 2.0.4 or higher is required.\n\n### Features\n\n- Shows a list of all search engines and social networks defined in Piwik core.\n- Abillity to manage custom search engines and social networks\n- Abillity to disable\/enable Piwik's default social network list\n\n## Changelog\n\n- 1.0 Initial release\n\n## Support\n\nPlease direct any feedback to [stefan@piwik.org](mailto:stefan@piwik.org)\n\n## Contribute\n\nFeel free to create issues and pull requests.\n\n## License\n\nGPLv3 or later\n\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/sgiehl\/piwik-plugin-ReferrersManager\/commits\/v1.1",
    "readmeHtml":{"description":"\n\n<p>This plugin allows to view and manage custom search engines and social networks that are recognized with piwik.<\/p>\n\n<h3>Requirements<\/h3>\n\n<p><a href=\"https:\/\/github.com\/piwik\/piwik\">Piwik<\/a> 2.0.4 or higher is required.<\/p>\n\n<h3>Features<\/h3>\n\n<ul><li>Shows a list of all search engines and social networks defined in Piwik core.<\/li>\n<li>Abillity to manage custom search engines and social networks<\/li>\n<li>Abillity to disable\/enable Piwik's default social network list<\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>1.0 Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/ReferrersManager\/download\/1.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"RerUserDates",
  "displayName":"Rer User Dates",
  "owner":"RegioneER",
  "description":"Hide custom date range selection from calendar, avoid users to set ranges in their default profile",
  "homepage":"https:\/\/RegioneER.github.io\/projects\/",
  "createdDateTime":"2014-05-13 11:40:04",
  "donate":{"paypal":"supporters@piwik.org",
    "flattr":"https:\/\/flattr.com\/thing\/131552\/Piwik-Web-Analytics-Open-Source",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/RegioneER\/RerUserDates",
  "lastUpdated":"2015-02-05 09:36:03",
  "latestVersion":"1.3.0",
  "numDownloads":4930,"screenshots":[],"previews":[],"activity":{"numCommits":"28",
    "numContributors":"3",
    "lastCommitDate":"2015-02-05 09:35:05"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.1",
    "release":"2014-05-13 11:40:04",
    "requires":{"piwik":">=2.2.3b4"},"readme":"",
    "numDownloads":30,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.0.1"},{"name":"1.0.2",
    "release":"2014-05-14 14:14:07",
    "requires":{"piwik":">=2.2.3b4"},"readme":"",
    "numDownloads":53,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.0.2"},{"name":"1.1.0",
    "release":"2014-05-16 13:12:05",
    "requires":{"piwik":">=2.2.3b4"},"readme":"",
    "numDownloads":72,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.1.0"},{"name":"1.1.1a",
    "release":"2014-05-19 07:32:03",
    "requires":{"piwik":">=2.2.3b4"},"readme":"",
    "numDownloads":125,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.1.1a"},{"name":"1.2.0",
    "release":"2014-05-29 15:46:04",
    "requires":{"piwik":">=2.2.3-b4"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.0"},{"name":"1.2.1",
    "release":"2014-05-29 16:00:04",
    "requires":{"piwik":">=2.2.3-b4"},"readme":"",
    "numDownloads":150,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.1"},{"name":"1.2.2",
    "release":"2014-06-17 14:28:05",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":9,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.2"},{"name":"1.2.3",
    "release":"2014-06-17 14:50:05",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":20,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.3"},{"name":"1.2.4",
    "release":"2014-06-18 14:36:05",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":171,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.4"},{"name":"1.2.5",
    "release":"2014-07-08 07:20:05",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":1664,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.5"},{"name":"1.2.6",
    "release":"2015-01-29 13:50:04",
    "requires":{"piwik":">=2.3.0"},"readme":"",
    "numDownloads":78,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/2.0.5",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.2.6"},{"name":"1.3.0",
    "release":"2015-02-05 09:36:03",
    "requires":{"piwik":">=2.8.0"},"readme":"# Piwik RerUserDates Plugin\n\n## Description\n\nThis [Piwik](http:\/\/piwik.org) Plugin lets you hide custom date range selection from calendar for regular users,\nalso lets you avoid users setting ranges as default value in their profile.\n\nEach time users asks for ranged date reports, Piwik builds it on the fly during user's browsing.\nThis slows down your server when there is a load of visits and a large number of tracked websites.\nAs you can see this action is resource intensive so when it happens, live websites tracking may become slow or inaccurate.\n\nInstalling this plugin you remove choices in the field _\"Report date to load by default\"_ in _User Settings page_ for all regular users.\nSuperadmin users setting page remains untouched and administrators will see only a notification about plugin's current behavior.\n\nAnother plugin's feature is regular users can't select any more a custom range in the calendar but Superadmins still can build reports.\n\nYou can enable or disable the two features independently by clicking checkboxes in the plugin's configuration page available in the super admin user interface.\n\nThis plugin is translated in: English, Italian and French (just send a pull request to include your favourite language, see _Can I contribute_ f.a.q.)\n\n## Installation\n\nPlease, read official [Piwik's documentation](http:\/\/piwik.org\/faq\/plugins\/#faq_21) about it.\n\n## FAQ\n\n__I would like to see a demonstration...__\nJust take a look at _screenshots_ .\n\n__Can I donate to you?__\nThanks but we can't accept money donations because we're a Government Organization.\nAll donation are linked to official Piwik project's accounts, simply help them to help us.\n\n__Can I contribute on development?__\nSure, you're welcome! Just send a [pull request on Github](https:\/\/github.com\/RegioneER\/RerNewSite\/issues)\n\n## Changelog\n\n### v1.0\n\n - First release and Marketplace integration\n - User Manager screen shot and better readme documentation\n\n### v1.1\n\n- Custom date range selection is disabled in the calendar only for regular users. A shorts jQuery snippet hides radio input and submit button.\n- Regular users who chose a range date as their default are now forced to _yesterday_ report just visiting the index page with a warning notification.\n- New French translation by @gaumondp\n\n### v.1.2\n\n- New plugin settings user interface for super admins, some better improvement and few bugs solved.\n- Solved a regression due to a lack of Settings Feature in Piwik's versions below 2.4.0\n- Merged French translation \n- Fixed Piwik compatibility with 2.10 from 2.7 by @ThaDafinser in PR #6\n\n### v.1.3\n\n- Settings environment breaks compatibility with Piwik versions < 2.8.0, thanks to @ThaDafinser.\n\n## License\n\n[GPL v3](http:\/\/www.gnu.org\/licenses\/gpl-3.0-standalone.html) or later\n\n## Support\n\nYou can ask for support and your feedback is appreciated at plugin's [issue center on Github](https:\/\/github.com\/RegioneER\/RerUserDates\/issues).\n",
    "numDownloads":2558,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/RegioneER\/RerUserDates\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This <a href=\"http:\/\/piwik.org\">Piwik<\/a> Plugin lets you hide custom date range selection from calendar for regular users,\nalso lets you avoid users setting ranges as default value in their profile.<\/p>\n\n<p>Each time users asks for ranged date reports, Piwik builds it on the fly during user's browsing.\nThis slows down your server when there is a load of visits and a large number of tracked websites.\nAs you can see this action is resource intensive so when it happens, live websites tracking may become slow or inaccurate.<\/p>\n\n<p>Installing this plugin you remove choices in the field <em>\"Report date to load by default\"<\/em> in <em>User Settings page<\/em> for all regular users.\nSuperadmin users setting page remains untouched and administrators will see only a notification about plugin's current behavior.<\/p>\n\n<p>Another plugin's feature is regular users can't select any more a custom range in the calendar but Superadmins still can build reports.<\/p>\n\n<p>You can enable or disable the two features independently by clicking checkboxes in the plugin's configuration page available in the super admin user interface.<\/p>\n\n<p>This plugin is translated in: English, Italian and French (just send a pull request to include your favourite language, see <em>Can I contribute<\/em> f.a.q.)<\/p>\n\n",
      "faq":"<p><strong>I would like to see a demonstration...<\/strong>\nJust take a look at <em>screenshots<\/em> .<\/p>\n\n<p><strong>Can I donate to you?<\/strong>\nThanks but we can't accept money donations because we're a Government Organization.\nAll donation are linked to official Piwik project's accounts, simply help them to help us.<\/p>\n\n<p><strong>Can I contribute on development?<\/strong>\nSure, you're welcome! Just send a <a href=\"https:\/\/github.com\/RegioneER\/RerNewSite\/issues\">pull request on Github<\/a><\/p>",
      "documentation":"",
      "changelog":"<h3>v1.0<\/h3>\n\n<ul><li>First release and Marketplace integration<\/li>\n<li>User Manager screen shot and better readme documentation<\/li>\n<\/ul><h3>v1.1<\/h3>\n\n<ul><li>Custom date range selection is disabled in the calendar only for regular users. A shorts jQuery snippet hides radio input and submit button.<\/li>\n<li>Regular users who chose a range date as their default are now forced to <em>yesterday<\/em> report just visiting the index page with a warning notification.<\/li>\n<li>New French translation by @gaumondp<\/li>\n<\/ul><h3>v.1.2<\/h3>\n\n<ul><li>New plugin settings user interface for super admins, some better improvement and few bugs solved.<\/li>\n<li>Solved a regression due to a lack of Settings Feature in Piwik's versions below 2.4.0<\/li>\n<li>Merged French translation <\/li>\n<li>Fixed Piwik compatibility with 2.10 from 2.7 by @ThaDafinser in PR #6<\/li>\n<\/ul><h3>v.1.3<\/h3>\n\n<ul><li>Settings environment breaks compatibility with Piwik versions &lt; 2.8.0, thanks to @ThaDafinser.<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/RerUserDates\/download\/1.3.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"SecurityInfo",
  "displayName":"Security Info",
  "owner":"piwik",
  "description":"Provides security information about your PHP environment and offers suggestions based on PhpSecInfo from the PHP Security Consortium.",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2014-12-23 01:17:19",
  "donate":{},"support":[],"isTheme":false,"keywords":["security",
    "phpsec"],"basePrice":0,"authors":[{"name":"Piwik",
    "email":"test1@example.com",
    "homepage":"http:\/\/piwik.org"}],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-SecurityInfo",
  "lastUpdated":"2014-12-23 01:18:41",
  "latestVersion":"1.0.4",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/SecurityInfo\/images\/Security_Info.png"],"previews":[],"activity":{"numCommits":"150",
    "numContributors":"7",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":true,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.3",
    "release":"2014-12-23 01:17:21",
    "requires":{"piwik":">=2.0.4-b5",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-SecurityInfo\/commits\/1.0.3",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SecurityInfo\/download\/1.0.3"},{"name":"1.0.4",
    "release":"2014-12-23 01:18:41",
    "requires":{"piwik":">=2.0.4-b5",
      "php":">=5.3.0"},"readme":"# Piwik SecurityInfo Plugin\n\n## Description\n\nWe highly recommend that all Piwik administrators enable the SecurityInfo plugin, and then view the Settings. The plugin is a tool in a multilayered security approach.\n\nPerformed checks include for instance usage of latest PHP version, usage of latest Piwik version, usage of PHP ini settings like magic_quotes_gpc and more. \n\n## FAQ\n\n__Does the plugin replace secure development practices or audit the code\/application?__\n\nNo, it doesn't. It just gives you some information based on PhpSecInfo from the PHP Security Consortium.\n\n## Changelog\n\n1.0 Initial release\n\n## Support\n\nPlease direct any feedback to [hello@piwik.org](mailto:hello@piwik.org)\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-SecurityInfo\/commits\/1.0.4",
    "readmeHtml":{"description":"\n\n<p>We highly recommend that all Piwik administrators enable the SecurityInfo plugin, and then view the Settings. The plugin is a tool in a multilayered security approach.<\/p>\n\n<p>Performed checks include for instance usage of latest PHP version, usage of latest Piwik version, usage of PHP ini settings like magic_quotes_gpc and more.<\/p>\n\n",
      "faq":"<p><strong>Does the plugin replace secure development practices or audit the code\/application?<\/strong><\/p>\n\n<p>No, it doesn't. It just gives you some information based on PhpSecInfo from the PHP Security Consortium.<\/p>",
      "documentation":"",
      "changelog":"<p>1.0 Initial release<\/p>"},"download":"\/api\/2.0\/plugins\/SecurityInfo\/download\/1.0.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ServerMonitor",
  "displayName":"Server Monitor",
  "owner":"Invision-Technology-Soultions",
  "description":"Use Piwik as a front-end application to the Munin server monitoring tool. This is a Piwik plugin that reads the raw RRD data files from your Munin mas",
  "homepage":"https:\/\/github.com\/Invision-Technology-Soultions\/ServerMonitor",
  "createdDateTime":"2015-07-13 06:44:04",
  "donate":{"paypal":"support@invisionit.com.au",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/Invision-Technology-Soultions\/ServerMonitor",
  "lastUpdated":"2015-08-08 07:10:03",
  "latestVersion":"0.1.1",
  "numDownloads":2514,"screenshots":[],"previews":[],"activity":{"numCommits":"12",
    "numContributors":"1",
    "lastCommitDate":"2015-08-08 07:09:13"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-07-13 06:44:04",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":312,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/Invision-Technology-Soultions\/ServerMonitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ServerMonitor\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-08-08 07:10:03",
    "requires":{"piwik":">=2.14.0"},"readme":"# Piwik ServerMonitor Plugin\n\n## Description\n\nUse [Piwik](http:\/\/piwik.org\/) as your analytics platform for statistics collected by [Munin server monitoring](http:\/\/munin-monitoring.org\/) tool. \n\nThis is a [Piwik](http:\/\/piwik.org\/) plugin that reads the raw RRD files from your Munin master server. \n\nThis enhances the Munin functionality by providing all the great benefits of Piwik, such as\n \n* Real time data\n* Customizable Dashboards\n* Enhanced Graphing\n* Access Munin data using Piwik API\n* TODO: Access Munin data using Piwik Mobile\n* TODO: Scheduled reports \n* TODO: Custom alerts for Server Monitoring - using [Piwik CustomAlerts plugin](https:\/\/github.com\/piwik\/plugin-CustomAlerts) \n\n## Screenshots\n\nThe following screenshots show how Munin is integrated with Piwik Analytics platform.\n\n__Piwik Menu__\n\nThe Piwik Menu is automatically populated based on the Munin configuration.\n\n![Piwik Menu](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/menu.png)\n\nYou can filter results based on Munin node server.\n\n![Server Filter](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/serverfilter.png)\n\n__Piwik Graphs__\n\nBelow are some example graphs that are created based on Munin data.\n\n![Bind monitoring](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/bind.png)\n![Ngnix monitoring](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/nginx.png)\n![CPU monitoring](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/cpu.png)\n![Memory monitoring](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/memory.png)\n\n__Piwik Dashboard Widgets__\n\nAll Munin metrics are available as dashboard widgets, allowing you to create custom dashboards for Server Monitoring.\n\n![Widgets](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/widgets.png)\n\n![Custom Dashboard](https:\/\/raw.githubusercontent.com\/Invision-Technology-Soultions\/ServerMonitor\/master\/screenshots\/dashboard.png)\n\n## Requirements\n\n* Requires [Piwik](http:\/\/piwik.org\/) (Tested >=2.13) and [Munin server monitoring](http:\/\/guide.munin-monitoring.org\/en\/latest\/master\/) (Tested 1.4.6) installed on same server.\n* [PHP RRD Functions](http:\/\/php.net\/manual\/en\/book.rrd.php) (Tested 1.1.3)\n* Piwik requires read-only access to Munin datafile and RRD files located in: \/var\/lib\/munin\/ \n\n## Installation\n\n* Ensure you meet the above requirements\n* Install via Piwik Marketplace\n\n## Roadmap\n \n* Integration with Piwik Scheduled reports\n* Integration with Piwik Custom Alerts\n* Integration with Piwik Mobile App\n* Support data collection from remote Munin master\n* Store Munin RRD data in Piwik database for historical statistics \n\n## Changelog\n\n* 0.1.0 - First beta\n* 0.1.5 - Tested Munin v2.25, Support Piwik Periods: Week, Month, Year\n\n## License\n\nGPL v3 or later\n\n## Support\n\nIf you require proffesional services, please contact us at [support@invisionit.com.au](mailto:support@invisionit.com.au)",
    "numDownloads":2202,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/Invision-Technology-Soultions\/ServerMonitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Use <a href=\"http:\/\/piwik.org\/\">Piwik<\/a> as your analytics platform for statistics collected by <a href=\"http:\/\/munin-monitoring.org\/\">Munin server monitoring<\/a> tool.<\/p>\n\n<p>This is a <a href=\"http:\/\/piwik.org\/\">Piwik<\/a> plugin that reads the raw RRD files from your Munin master server.<\/p>\n\n<p>This enhances the Munin functionality by providing all the great benefits of Piwik, such as<\/p>\n\n<ul><li>Real time data<\/li>\n<li>Customizable Dashboards<\/li>\n<li>Enhanced Graphing<\/li>\n<li>Access Munin data using Piwik API<\/li>\n<li>TODO: Access Munin data using Piwik Mobile<\/li>\n<li>TODO: Scheduled reports <\/li>\n<li>TODO: Custom alerts for Server Monitoring - using <a href=\"https:\/\/github.com\/piwik\/plugin-CustomAlerts\">Piwik CustomAlerts plugin<\/a> <\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li>0.1.0 - First beta<\/li>\n<li>0.1.5 - Tested Munin v2.25, Support Piwik Periods: Week, Month, Year<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/ServerMonitor\/download\/0.1.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ShibbolethLogin",
  "displayName":"Shibboleth Login",
  "owner":"pouyana",
  "description":"Shibboleth Login Plugin for Piwik",
  "homepage":"https:\/\/github.com\/pouyana\/LoginShibboleth",
  "createdDateTime":"2015-08-10 12:00:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/pouyana\/LoginShibboleth",
  "lastUpdated":"2015-09-07 08:10:03",
  "latestVersion":"1.1.4",
  "numDownloads":1603,"screenshots":[],"previews":[],"activity":{"numCommits":"10",
    "numContributors":"1",
    "lastCommitDate":"2015-09-07 08:18:19"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.1.2",
    "release":"2015-08-10 12:00:03",
    "requires":{"piwik":">=2.2.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/pouyana\/LoginShibboleth\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ShibbolethLogin\/download\/1.1.2"},{"name":"1.1.3",
    "release":"2015-08-10 12:10:02",
    "requires":{"piwik":">=2.2.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":187,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/pouyana\/LoginShibboleth\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ShibbolethLogin\/download\/1.1.3"},{"name":"1.1.4",
    "release":"2015-09-07 08:10:03",
    "requires":{"piwik":">=2.2.0",
      "php":">=5.3.0"},"readme":"# Login Shibboleth\nLogin Shibboleth replaces the default Piwik Login plug-in and offers the user a way to incorporate existing Shibboleth with Piwik.\n\n# Pre-Requirement\nTo use this plug-in you should have the following pre-requirements set:\n- Your Shibboleth system is up and running and is connected to apache.\n- You can access some data from $\\_SERVER so, you can read user data from $\\_SERVER.\n- If you want to combine Shibboleth with LDAP, you should have php5-ldap or your distribution version of php-ldap installed.\n- You are familiar with PHP coding, so you can change the custom parameters and function to suite your system.\n- You follow the same user Model as Piwik. If you change the user Model to contain some extra informations, you should also change this plug-in's handling on the way users are created.\n- This plug-in supports the following user informations retrieval:\n  - username (login)\n  - email\n  - alias (name or fullname)\n  - token (random string length 32chars)\n  - websites (access_level and websites id)\n\n# Configuration\nFor the configuration following settings should be set in config\/config.ini.php\n\n## Datasource:\n\n```\n[datasource]  \ndatasource[\"alias\"] = \"shib\"  \ndatasource[\"login\"] = \"shib\"\ndatasource[\"email\"] = \"shib\"\ndatasource[\"websites\"] = \"shib, ldap\"\ndatasource[\"superuser\"] = \"shib\"\n```\n\nThe datasource helps you to change the way this plug-in accesses the information needed to generate or add users to Piwik. Normally Shibboleth (shib) should suffice. The software will look at the options in config.ini.php as it is ordered. If you want Shibboleth to prevail, add it first. If your first choice for an option is LDAP add (ldap) first. The MySQL database will automatically comes to help if none of the options give a valid result, which is most of the time unlikely. if your User Model is different, you can set other options here. If you use other resources than this tree, you can also define it here and the use the AuthLib class as parent class and extend it to your own Model.\n\n## Shib:\n\n```\n[shib]\nshib[\"login\"] = \"uid\"\nshib[\"alias\"] = \"fullName\"\nshib[\"email\"] = \"mail\"\nshib[\"superuser\"] = \"groupMembership\"\nshib[\"superuser_type\"] = \"string\"\nshib[\"superuser_param\"] = \"cn=RZ-Piwik-Admin\"\nshib[\"to_get_view\"] = \"groupMembership\"\nshib[\"to_get_view_type\"] = \"string\"\nshib[\"to_get_view_param\"] = \"cn=RZ-Piwik-View\"\nshib[\"to_get_admin\"] = \"groupMembership\"\nshib[\"to_get_admin_type\"] = \"string\"\nshib[\"to_get_admin_param\"] = \"cn=RZ-Piwik-View\"\n```\n\nIn shib you can set the Shibboleth parameter in which user data is caught. if you have some other settings it is possible to set them here. The information would be available in Shibboleth class.\n\n## LDAP:\n\n```\n[ldap]\nldap[\"host\"] = \"ldaphost\"\nldap[\"port\"] = 636\nldap[\"user\"] = \"binduser\"\nldap[\"password\"] = \"bindpassword\"\nldap[\"dn\"] = \"binddn\"\nldap[\"to_filter_view\"] = \"(userfilter)\"\nldap[\"to_get_view\"] = \"website attr\"\nldap[\"to_get_type_view\"] = \"string\"\nldap[\"to_filter_admin\"] = \"\"\nldap[\"to_get_admin\"] = \"\"\nldap[\"to_get_type_admin\"] = \"\"\n```\n\nThe same applies here just like the Shibboleth settings above.\n\n## Apache Settings\nTo exclude the public part of piwik, mainly the tracker and piwik.php from the Shibboleth Auth, the following settings have been set in apache VirtualHost.\n\n###Apache 2.2\n```\n<LocationMatch \"^\/(?!piwik.js|piwik.php|opt_out.php)\">\n        AuthType shibboleth\n        ShibRequireSession On\n        require shibboleth\n        require valid-user\n        satisfy any\n<\/LocationMatch>\n```\n\n###Apache 2.4\n```\n<LocationMatch \"^\/(?!piwik.js|piwik.php|opt_out.php)\">\n        AuthType Shibboleth\n        ShibrequestSetting requireSession 1\n        Require valid-user\n        satisfy all\n<\/LocationMatch>\n```\n\n# License\n> The MIT License (MIT)\n\n> Copyright (c) 2015 Pouyan Azari  \n> Copyright (c) 2015 University of W\u00fcrzburg\n\n> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n> THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
    "numDownloads":1415,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/pouyana\/LoginShibboleth\/commits\/0.1.3",
    "readmeHtml":{"description":"",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/ShibbolethLogin\/download\/1.1.4"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"ShortcodeTracker",
  "displayName":"Shortcode Tracker",
  "owner":"mgazdzik",
  "description":"Plugin allowing user to create shortcodes and track their usage within Piwik. Also integrates with UI to deliver user-friendly interaction.",
  "homepage":"http:\/\/mgazdzik.pl\/shortcodetracker",
  "createdDateTime":"2015-11-11 12:46:02",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker",
  "lastUpdated":"2015-12-12 16:54:03",
  "latestVersion":"0.6.2",
  "numDownloads":1454,"screenshots":[],"previews":[],"activity":{"numCommits":null,"numContributors":null,"lastCommitDate":"2015-12-20 11:58:06"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.4.3",
    "release":"2015-11-11 12:46:03",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/commits\/0.1.8",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ShortcodeTracker\/download\/0.4.3"},{"name":"0.4.5",
    "release":"2015-11-11 12:52:03",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":214,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/commits\/0.1.9",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ShortcodeTracker\/download\/0.4.5"},{"name":"0.5.0",
    "release":"2015-12-10 21:22:03",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":46,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/commits\/1.0.3",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ShortcodeTracker\/download\/0.5.0"},{"name":"0.6.0",
    "release":"2015-12-12 16:48:03",
    "requires":{"piwik":">=2.14.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/commits\/0.0.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/ShortcodeTracker\/download\/0.6.0"},{"name":"0.6.2",
    "release":"2015-12-12 16:54:03",
    "requires":{"piwik":">=2.14.0"},"readme":"# ShortcodeTracker Plugin\n\n| Branch | Status |\n| --- | --- |\n| Master | [![Build Status](https:\/\/travis-ci.org\/mgazdzik\/plugin-ShortcodeTracker.svg?branch=master)](https:\/\/travis-ci.org\/mgazdzik\/plugin-ShortcodeTracker) |\n| Develop | [![Build Status](https:\/\/travis-ci.org\/mgazdzik\/plugin-ShortcodeTracker.svg?branch=develop)](https:\/\/travis-ci.org\/mgazdzik\/plugin-ShortcodeTracker) |\n\n## Description\n\nPlugin allows to turn Piwik instance into URL Shortener.\n\nBasic features:\n\n* easily create shortcode from any page you track in Piwik (integration with Actions report UI),\n* create shortcode for any custom URL you want,\n* perform redirects using your Piwik instance,\n* get usage statistics for shortcodes handled by your instance\n    * get best performing URL's on websites you track,\n    * external URLs redirect statistics,\n* see which URLs are being shortened and visited most often - also for external URLs not tracked in your Piwik.\n\nGoodness coming:\n\n* for redirect performance improvement, store your shortcodes in storage like Memcache or Redis,\n* attributing shortcode redirects with actual visits on your page,\n* more advanced reports,\n\nBefore using, please read content in [`Setup`](https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker#setup) section \nas it contains steps required to make plugin work with your Piwik instance!\n\n## Usage\n\nAfter correctly setting up this plugin (please see section below), you are ready for shortening your Urls.\n\nThere is one new section in top reporting menu called \"Shortcodes\".\n\nThis view gives you possibility to shorten any URL you want and operate with shortcode retrieved.\n\nAdditionally this plugin integrates with Page URL's report - hover over URL you want to shorten and click scissors icon.\n\nThis will call popup with appropriate shortcode, so you don't need to manually shorten any URL you already track with your\nPiwik instance.\n\nEnjoy!\n\n## Setup\n\n### Webserver\nBesides of functional Piwik instance with this plugin enabled you will also need special configuration for your webserver.\n\nIt's purpose is to redirect any short url hitting your server to proper API method doing the magic.\n\nBelow you can find example configurations\n\n* [for NGINX webserver vhost](docs\/nginx_config.md)\n* [for Apache2 webserver .htaccess file](docs\/apache_config.md)\n\n**Please be aware that in your case this configuration may be different, so please contact your system\/webserver\nadmin for advisory!**\n\n\n### Plugin\n\nBefore you can start shortening your URLs you need to perform following steps:\n\n* go to Administration -> Plugins,\n* find \"ShortcodeTracker\" plugin and click `enable`,\n\nAfter you confirm that plugin has been enabled:\n* go to Administration -> Plugin Settings,\n* go to ShortcodeTracker section,\n* fill in Shortener URL input,\n* if you want to track external sites, you need to decide to which Piwik page those actions will be attributed (see\nExternal redirects tracking section below),\n* click 'save',\n* **additionally you have to make Shortener URL a trusted host for Piwik by entering it in settings section**,\n\nThis is necessary to perform, as otherwise you will not be able to generate shortened URLs or use them with Piwik.\n\n### External redirects tracking\n\nIt is possible to also track redirect actions for external URLs (i.e. which URL doesn't match any page tracked within\nyour Piwik instance). However, it is required to decide to which site this traffic will be attributed to.\n\nIt is recommended to create a separate Website in Piwik instance only dedicated to this traffic, so that other websites\nreports won't be affected by redirect events.\n\nTo select which site should collect redirects:\n\n* go to `Plugin Settings` section,\n* from dropdown you can select site for external redirects,\n* alternatively you can select not to track external redirects by setting `Do not collect external shortcode redirects`,\n* click save\n\n## Changelog\n\n* 0.6.2\n    * Sort out mistakenly pushed tag\n\n\n* 0.6.0\n    * Shortcode usage report added link to shortened page to for easier recognition of what is being shortened and used most,\n    * Display summarized report displaying which URLs were visited most via shortcode redirects,\n\n\n* 0.5.0\n    * Add statistics collection for redirects to pages not tracked with Piwik (external pages)\n         * collect redirect statistics into Site you choose in interface,\n         * aggregate and display report for external shortcodes in separate view\n\n\n* 0.4.5\n    * fix README formating for sake of Plugin market\n    \n    \n* 0.4.4\n    * add license to plugin.json\n    \n    \n* 0.4.3\n    * fix plugin.json structure for Plugin market\n\n\n* 0.4.2\n    * Added missing changelog\n\n\n* 0.4.0\n    * Piwik Plugin market release\n\n\n* 0.3.0\n    * Tuned travis build file\n    * Mark Shortcodes as internal during creating\n    * Track custom event with \"redirect\" category upon each redirect for internal Shortcode\n    * Secure API methods from anonymous user usage\n    * Add shortcode report for internally tracked URLs:\n        * Create new visit during redirect (store referrer)\n        * Add Shortcode usage report based on Custom Events plugin API\n\n\n* 0.2.0\n    * added Travis build badges for master and develop branches\n    * fixed existing unit tests\n    * slight refactor in terms of class naming\n    * added integration test for API methods\n\n\n* 0.1.0\n    * API allowing to create and retrieve shortcodes,\n    * basic storage in MySQL, but possible to add other caching layers - for ex. Memcache, Redis,\n    * unit tests covering core logic,\n    * redirect API method that will preform appropriate redirects for incoming shortcode requests,\n    * basic setup guide involving Apache2 and Nginx configs,\n    * settings section allowing user to configure Shortener base URL (which may and should be different than Piwik instance)\n\n## Backlog\n\n\n\n* Migrate plugin to work with Piwik 2.15 LTS version,\n* Add advanced report for each shortcode\n    * stitch every redirect event with following action,\n    * add new referrer type (shortcode),\n    * aggregate statistics,\n    * add segment for referrer,\n* Refactor plugin so it's possible to cover Model.php with tests,\n* Add queue system for tracking redirect events to improve performance of redirect feature,\n* Add integration test for redirect tracking,\n* Add support for at least one caching system (redis\/memcache),\n* Improve HTML elements designs\/styles,\n* Throw exception\/signal in UI in case Shortener URL is not changed,\n* Introduce Shortener base URL validation (in Settings section),\n* introduce value object to store Shortcode,\n* handle case when given idsite has multiple domains assigned (currently it's only for main domain URL),\n\n\n## Support\n\nPlease direct any feedback regarding plugin to Github repository issue tracker available at\n[https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/issues](https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/issues).\n\n\n## Credits\nScissors icon visible in Actions report is originating from\n[https:\/\/icons8.com\/](https:\/\/icons8.com\/).\n",
    "numDownloads":1193,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker\/commits\/0.43b",
    "readmeHtml":{"description":"\n\n<p>Plugin allows to turn Piwik instance into URL Shortener.<\/p>\n\n<p>Basic features:<\/p>\n\n<ul><li>easily create shortcode from any page you track in Piwik (integration with Actions report UI),<\/li>\n<li>create shortcode for any custom URL you want,<\/li>\n<li>perform redirects using your Piwik instance,<\/li>\n<li>get usage statistics for shortcodes handled by your instance\n\n<ul><li>get best performing URL's on websites you track,<\/li>\n<li>external URLs redirect statistics,<\/li>\n<\/ul><\/li>\n<li>see which URLs are being shortened and visited most often - also for external URLs not tracked in your Piwik.<\/li>\n<\/ul><p>Goodness coming:<\/p>\n\n<ul><li>for redirect performance improvement, store your shortcodes in storage like Memcache or Redis,<\/li>\n<li>attributing shortcode redirects with actual visits on your page,<\/li>\n<li>more advanced reports,<\/li>\n<\/ul><p>Before using, please read content in <a href=\"https:\/\/github.com\/mgazdzik\/plugin-ShortcodeTracker#setup\"><code>Setup<\/code><\/a> section \nas it contains steps required to make plugin work with your Piwik instance!<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<ul><li><p>0.6.2<\/p>\n\n<ul><li>Sort out mistakenly pushed tag<\/li>\n<\/ul><\/li>\n<li><p>0.6.0<\/p>\n\n<ul><li>Shortcode usage report added link to shortened page to for easier recognition of what is being shortened and used most,<\/li>\n<li>Display summarized report displaying which URLs were visited most via shortcode redirects,<\/li>\n<\/ul><\/li>\n<li><p>0.5.0<\/p>\n\n<ul><li>Add statistics collection for redirects to pages not tracked with Piwik (external pages)\n\n<ul><li>collect redirect statistics into Site you choose in interface,<\/li>\n<li>aggregate and display report for external shortcodes in separate view<\/li>\n<\/ul><\/li>\n<\/ul><\/li>\n<li><p>0.4.5<\/p>\n\n<ul><li>fix README formating for sake of Plugin market<\/li>\n<\/ul><\/li>\n<li><p>0.4.4<\/p>\n\n<ul><li>add license to plugin.json<\/li>\n<\/ul><\/li>\n<li><p>0.4.3<\/p>\n\n<ul><li>fix plugin.json structure for Plugin market<\/li>\n<\/ul><\/li>\n<li><p>0.4.2<\/p>\n\n<ul><li>Added missing changelog<\/li>\n<\/ul><\/li>\n<li><p>0.4.0<\/p>\n\n<ul><li>Piwik Plugin market release<\/li>\n<\/ul><\/li>\n<li><p>0.3.0<\/p>\n\n<ul><li>Tuned travis build file<\/li>\n<li>Mark Shortcodes as internal during creating<\/li>\n<li>Track custom event with \"redirect\" category upon each redirect for internal Shortcode<\/li>\n<li>Secure API methods from anonymous user usage<\/li>\n<li>Add shortcode report for internally tracked URLs:\n\n<ul><li>Create new visit during redirect (store referrer)<\/li>\n<li>Add Shortcode usage report based on Custom Events plugin API<\/li>\n<\/ul><\/li>\n<\/ul><\/li>\n<li><p>0.2.0<\/p>\n\n<ul><li>added Travis build badges for master and develop branches<\/li>\n<li>fixed existing unit tests<\/li>\n<li>slight refactor in terms of class naming<\/li>\n<li>added integration test for API methods<\/li>\n<\/ul><\/li>\n<li><p>0.1.0<\/p>\n\n<ul><li>API allowing to create and retrieve shortcodes,<\/li>\n<li>basic storage in MySQL, but possible to add other caching layers - for ex. Memcache, Redis,<\/li>\n<li>unit tests covering core logic,<\/li>\n<li>redirect API method that will preform appropriate redirects for incoming shortcode requests,<\/li>\n<li>basic setup guide involving Apache2 and Nginx configs,<\/li>\n<li>settings section allowing user to configure Shortener base URL (which may and should be different than Piwik instance)<\/li>\n<\/ul><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/ShortcodeTracker\/download\/0.6.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"SimplePageBuilder",
  "displayName":"Simple Page Builder",
  "owner":"PiwikPRO",
  "description":"Lets you add a custom page to Piwik. The page will be visible to all users in the top menu.",
  "homepage":"https:\/\/github.com\/PiwikPRO\/SimplePageBuilder",
  "createdDateTime":"2014-12-08 04:50:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder",
  "lastUpdated":"2016-03-08 12:08:04",
  "latestVersion":"1.2.0",
  "numDownloads":3892,"screenshots":[],"previews":[],"activity":{"numCommits":"38",
    "numContributors":"5",
    "lastCommitDate":"2016-04-15 22:58:07"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.1",
    "release":"2014-12-08 04:50:03",
    "requires":{"piwik":">=2.10.0-b2"},"readme":"",
    "numDownloads":14,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.0.1"},{"name":"1.0.2",
    "release":"2014-12-09 02:18:04",
    "requires":{"piwik":">=2.10.0-b2"},"readme":"",
    "numDownloads":52,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.0.2"},{"name":"1.0.3",
    "release":"2014-12-12 14:08:03",
    "requires":{"piwik":">=2.10.0-b2"},"readme":"",
    "numDownloads":289,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.0.3"},{"name":"1.0.4",
    "release":"2015-01-19 14:28:03",
    "requires":{"piwik":">=2.9.0"},"readme":"",
    "numDownloads":1234,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.0.4"},{"name":"1.0.5",
    "release":"2015-07-28 10:00:03",
    "requires":{"piwik":">=2.9.0"},"readme":"",
    "numDownloads":557,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.0.5"},{"name":"1.1.0",
    "release":"2015-10-21 22:20:03",
    "requires":{"piwik":">=2.15.0-b15"},"readme":"",
    "numDownloads":1124,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.1.0"},{"name":"1.2.0",
    "release":"2016-03-08 12:08:04",
    "requires":{"piwik":">=2.16.0"},"readme":"# Piwik CustomPage Plugin\n\nMaster [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-SimplePageBuilder.svg?branch=master)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-SimplePageBuilder)\nDevelop [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-SimplePageBuilder.svg?branch=develop)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-SimplePageBuilder)\n\n## Description\n\nThis plugin lets you add a page with custom HTML content to Piwik. The page will be linked in the top menu and can be edited by the super user.\n\n## Changelog\n\n**1.2.0**\n\n- PPCDEV-2609 Compatibility with Piwik 2.16.0\n\n**1.1.0**\n\n- Compatibility with Piwik 2.15.\n\n**1.0.3**\n\n- added composer.json\n\n**1.0.2**\n\n- Correctly replace {date} when period is range.\n- In example use H2 in the sample text for the custom page title\n\n**1.0.0**\n\n- First stable version\n\n## Support\n\nPlease direct any feedback to [SimplePageBuilder issues on GitHub](https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/issues).\n",
    "numDownloads":622,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SimplePageBuilder\/commits\/v0.1.2",
    "readmeHtml":{"description":"\n\n<p>This plugin lets you add a page with custom HTML content to Piwik. The page will be linked in the top menu and can be edited by the super user.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<p><strong>1.2.0<\/strong><\/p>\n\n<ul><li>PPCDEV-2609 Compatibility with Piwik 2.16.0<\/li>\n<\/ul><p><strong>1.1.0<\/strong><\/p>\n\n<ul><li>Compatibility with Piwik 2.15.<\/li>\n<\/ul><p><strong>1.0.3<\/strong><\/p>\n\n<ul><li>added composer.json<\/li>\n<\/ul><p><strong>1.0.2<\/strong><\/p>\n\n<ul><li>Correctly replace {date} when period is range.<\/li>\n<li>In example use H2 in the sample text for the custom page title<\/li>\n<\/ul><p><strong>1.0.0<\/strong><\/p>\n\n<ul><li>First stable version<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/SimplePageBuilder\/download\/1.2.0"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"SimpleSysMon",
  "displayName":"Simple Sys Mon",
  "owner":"job963",
  "description":"Simple System Monitor for visualizing system data like cpu load, memory use or network traffic",
  "homepage":"https:\/\/github.com\/job963\/SimpleSysMon",
  "createdDateTime":"2014-09-16 07:38:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/job963\/SimpleSysMon",
  "lastUpdated":"2015-03-15 14:34:04",
  "latestVersion":"0.3.1",
  "numDownloads":6929,"screenshots":[],"previews":[],"activity":{"numCommits":"25",
    "numContributors":"2",
    "lastCommitDate":"2015-03-15 14:33:05"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-09-16 07:38:04",
    "requires":{},"readme":"",
    "numDownloads":53,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-09-17 18:30:04",
    "requires":{},"readme":"",
    "numDownloads":3,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.1.1"},{"name":"0.1.3",
    "release":"2014-09-17 18:50:03",
    "requires":{},"readme":"",
    "numDownloads":1108,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.1.3"},{"name":"0.2",
    "release":"2014-12-09 20:36:03",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.2"},{"name":"0.2.1",
    "release":"2014-12-09 20:40:04",
    "requires":{},"readme":"",
    "numDownloads":936,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.2.1"},{"name":"0.3",
    "release":"2015-03-01 11:36:04",
    "requires":{},"readme":"",
    "numDownloads":339,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.3"},{"name":"0.3.1",
    "release":"2015-03-15 14:34:04",
    "requires":{},"readme":"# Piwik Simple System Monitor Plugin\n\n## Description\n\nThis plugin shows how much load your webserver does have, where Piwik (and maybe your main website) is running. Additionally the free or the used memory will be displayed.\n\nThe display will be refreshed automatically as often as you like. This can be setup by yourself in the plugin settings.\n\n\n## Screenshots\n**Table Widget**  \n![](https:\/\/github.com\/job963\/SimpleSysMon\/raw\/master\/screenshots\/widgetLiveSysLoad-EN.png)\n\n**Graph Widget**  \n![](https:\/\/github.com\/job963\/SimpleSysMon\/raw\/master\/screenshots\/widgetLiveSysLoadBars-EN.png)\n\n**Plugin Settings**  \n![](https:\/\/github.com\/job963\/SimpleSysMon\/raw\/master\/screenshots\/settingLiveSysLoad-EN.png)\n\n\n## Installation\n\nInstall it via [Piwik Marketplace](http:\/\/plugins.piwik.org\/).\n\nOR \n\nInstall manually:\n\n1. Clone the plugin into the plugins directory of your Piwik installation.\n\n   ```\n   cd plugins\/\n   git clone https:\/\/github.com\/job963\/SimpleSysMon.git SimpleSysMon\n   ```\n\n2. Login as superuser into your Piwik installation and activate the plugin under Settings -> Plugins\n\n3. Goto Settings -> Plugin Settings an setup the values for the widget.\n\n4. You will now find the widget under the Simple System Monitor -> Live System Load.\n\n## Changelog\n\n* **0.1.0 Initial release**\n  * Display of CPU load\n  * Display of free or used memory    \n\n* **0.1.1 Initial release**\n  * Corrections and error trapping for shared websites where the some values aren't accessible \n  \n* **0.2.0 Graphical display**\n  * Display as bar chart for system load and memory use added \n  \n* **0.2.1 Hungarian language**\n  * Hungarian language added \n  \n* **0.3.0 Bar charts for network and disk**\n  * Two new bars for displaying network traffic (upload and download) and disk usage added\n  * Additional to the percentage values, the real values are display on hover \n\n\n## FAQ\n\n**How is the CPU load calculated?**  \nFor the CPU load the PHP function sys_getloadavg() is used and divided by the number of cores.\n  \n**Why is there a difference between free and used memory?**  \nThere are three \"memory parts\" under Linux:   \n\n* Used memory\n* Cache\n* Free memory\n  \nThe sum of these three parts will be equal to the total memory. But only `used memory` and `free memory` are available as options (in settings).\n  \n**What is the value for 100% network traffic**  \nYou can setup the value for the maximum network traffic in the plugin system settings. The value there must be specified in kB\/s (kilobyte per second). This value is used as 100% network traffic.\n  \n**Does the plugin work on a shared webspace?**  \nIn the most cases a shared webspace doesn't have access to system information. Therefore in these cases, the plugin cannot be used. The pseudo file system \/proc must be accessible.\n  \n**Does the plugin work on Windows system?**  \nIf the server where Piwik is running is using Windows as OS, the plugin doesn't work yet.  \nIf just your browser is running under Windows (and the server runs under Linux) this plugin works well.\n\n## License\n\nGPL v3 or later\n\n## Support\n\nPlease report any issues directly in [Github](https:\/\/github.com\/job963\/SimpleSysMon\/issues). \n\n## Contribute \n\nIf you are interested in contributing to this plugin, feel free to send pull requests!\n\n",
    "numDownloads":4490,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/SimpleSysMon\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This plugin shows how much load your webserver does have, where Piwik (and maybe your main website) is running. Additionally the free or the used memory will be displayed.<\/p>\n\n<p>The display will be refreshed automatically as often as you like. This can be setup by yourself in the plugin settings.<\/p>\n\n",
      "faq":"<p><strong>How is the CPU load calculated?<\/strong>\nFor the CPU load the PHP function sys_getloadavg() is used and divided by the number of cores.<\/p>\n\n<p><strong>Why is there a difference between free and used memory?<\/strong>\nThere are three \"memory parts\" under Linux:<\/p>\n\n<ul><li>Used memory<\/li>\n<li>Cache<\/li>\n<li>Free memory<\/li>\n<\/ul><p>The sum of these three parts will be equal to the total memory. But only <code>used memory<\/code> and <code>free memory<\/code> are available as options (in settings).<\/p>\n\n<p><strong>What is the value for 100% network traffic<\/strong>\nYou can setup the value for the maximum network traffic in the plugin system settings. The value there must be specified in kB\/s (kilobyte per second). This value is used as 100% network traffic.<\/p>\n\n<p><strong>Does the plugin work on a shared webspace?<\/strong>\nIn the most cases a shared webspace doesn't have access to system information. Therefore in these cases, the plugin cannot be used. The pseudo file system \/proc must be accessible.<\/p>\n\n<p><strong>Does the plugin work on Windows system?<\/strong>\nIf the server where Piwik is running is using Windows as OS, the plugin doesn't work yet.\nIf just your browser is running under Windows (and the server runs under Linux) this plugin works well.<\/p>",
      "documentation":"",
      "changelog":"<ul><li><p><strong>0.1.0 Initial release<\/strong><\/p>\n\n<ul><li>Display of CPU load<\/li>\n<li>Display of free or used memory    <\/li>\n<\/ul><\/li>\n<li><p><strong>0.1.1 Initial release<\/strong><\/p>\n\n<ul><li>Corrections and error trapping for shared websites where the some values aren't accessible <\/li>\n<\/ul><\/li>\n<li><p><strong>0.2.0 Graphical display<\/strong><\/p>\n\n<ul><li>Display as bar chart for system load and memory use added <\/li>\n<\/ul><\/li>\n<li><p><strong>0.2.1 Hungarian language<\/strong><\/p>\n\n<ul><li>Hungarian language added <\/li>\n<\/ul><\/li>\n<li><p><strong>0.3.0 Bar charts for network and disk<\/strong><\/p>\n\n<ul><li>Two new bars for displaying network traffic (upload and download) and disk usage added<\/li>\n<li>Additional to the percentage values, the real values are display on hover <\/li>\n<\/ul><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/SimpleSysMon\/download\/0.3.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"SiteMigration",
  "displayName":"Site Migration",
  "owner":"PiwikPRO",
  "description":"Migrate your website and all website data between two Piwik installations.",
  "homepage":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration",
  "createdDateTime":"2014-11-11 21:28:05",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration",
  "lastUpdated":"2015-11-27 02:46:04",
  "latestVersion":"1.0.8",
  "numDownloads":5191,"screenshots":[],"previews":[],"activity":{"numCommits":"70",
    "numContributors":"7",
    "lastCommitDate":"2016-05-11 09:27:40"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0.0",
    "release":"2014-11-11 21:28:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.0-b9"},"readme":"",
    "numDownloads":77,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.0"},{"name":"1.0.1",
    "release":"2014-11-12 23:34:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.0-b9"},"readme":"",
    "numDownloads":127,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.1"},{"name":"1.0.2",
    "release":"2014-11-17 00:04:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.0-b9"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.2"},{"name":"1.0.3",
    "release":"2014-11-17 00:06:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.0-b9"},"readme":"",
    "numDownloads":19,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.3"},{"name":"1.0.4",
    "release":"2014-11-17 11:06:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.1"},"readme":"",
    "numDownloads":202,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.4"},{"name":"1.0.5",
    "release":"2014-11-26 21:26:06",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.1"},"readme":"",
    "numDownloads":130,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.5"},{"name":"1.0.6",
    "release":"2014-12-03 03:34:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.9.1"},"readme":"",
    "numDownloads":174,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.6"},{"name":"1.0.7",
    "release":"2014-12-21 22:04:05",
    "requires":{"php":">=5.3.0",
      "piwik":">=2.10.0-b10"},"readme":"",
    "numDownloads":2669,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.7"},{"name":"1.0.8",
    "release":"2015-11-27 02:46:04",
    "requires":{"php":">=5.3.3",
      "piwik":">=2.11.0"},"readme":"# Piwik SiteMigration Plugin\n\n[![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-SiteMigration.svg?branch=master)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-SiteMigration)\n\n## Description\n\nMigrate websites, and all the tracking data between two Piwik installations. \n\nThis tool is useful in case you want to merge two Piwik installations, or if you want to move one or several websites to another Piwik server.\n\n### Requirements\n\nTo migrate data from one Piwik server to another server, you must:\n\n * First make sure that both Piwik servers are using the latest Piwik version.\n * You must be able to connect to the Mysql server of the Target Piwik Server.\n * You must run the console command on the Piwik Server that data will be copied from.\n  \n### Migrating the data\n\nStart the migration by calling from the command line CLI the following command:\n\n    .\/console migration:site idSite --db-prefix piwik_\n    \nThe command will ask for the credentials to the target database.\n \nIt will then migrate the data from the current Piwik to the target Piwik.\n\n### Options\n\nRun `.\/console migration:site --help` to get a full list of options.\n \n## FAQ\n\n**How do I migrate site data between two dates only?**\n\nYou can use command options: `--date-from` and `--date-to`.\n\n**How do I migrate tracking log data only, and skip migrating archived data?**\n\nJust add the `--skip-archive-data` option.\n\n\n**How do I migrate the archived data and skip the tracking data?**\n\nJust add the `--skip-log-data` option.\n\n**Can I run the command on the Target Piwik server (where data will be imported)?**\n\nNo, you must run the command from the source Piwik server (the server which contains the data you want to migrate).\n\n## Changelog\n\n**v1.0.7**\n\n- Updated the plugin for compatibility with Piwik 2.10.\n\n**v1.0.6**\n\n- [#6](https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/issues\/6): fixed a PHP 5.3 incompatibility\n\n**v1.0.5**\n\n- [#5](https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/issues\/5): fixed `Integrity constraint violation: 1048 Column 'idaction_url' cannot be null`\n\n**v1.0.4**\n\n- [#3](https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/issues\/3): fixed `--db-prefix` option\n\n**v1.0.3**\n\n- Documentation update\n\n**v1.0.2**\n\n- Documentation update & fixed bug when archive_blob tables are not found \n\n**v1.0.1**\n\n- Documentation update\n\n**v1.0.0**\n\n- First stable release\n- Bugfixes\n\n**v0.1.1**\n\n- Changed license to free plugin\n- Changed name to SiteMigration\n\n**v0.1.0**\n\n- Initial release\n\n## Credits\n\nCreated by [Piwik PRO](http:\/\/piwik.pro\/)\n",
    "numDownloads":1793,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/commits\/v1.0.0",
    "readmeHtml":{"description":"\n\n<p>Migrate websites, and all the tracking data between two Piwik installations.<\/p>\n\n<p>This tool is useful in case you want to merge two Piwik installations, or if you want to move one or several websites to another Piwik server.<\/p>\n\n<h3>Requirements<\/h3>\n\n<p>To migrate data from one Piwik server to another server, you must:<\/p>\n\n<ul><li>First make sure that both Piwik servers are using the latest Piwik version.<\/li>\n<li>You must be able to connect to the Mysql server of the Target Piwik Server.<\/li>\n<li>You must run the console command on the Piwik Server that data will be copied from.<\/li>\n<\/ul><h3>Migrating the data<\/h3>\n\n<p>Start the migration by calling from the command line CLI the following command:<\/p>\n\n<pre><code>.\/console migration:site idSite --db-prefix piwik_\n<\/code><\/pre>\n\n<p>The command will ask for the credentials to the target database.<\/p>\n\n<p>It will then migrate the data from the current Piwik to the target Piwik.<\/p>\n\n<h3>Options<\/h3>\n\n<p>Run <code>.\/console migration:site --help<\/code> to get a full list of options.<\/p>\n\n",
      "faq":"<p><strong>How do I migrate site data between two dates only?<\/strong><\/p>\n\n<p>You can use command options: <code>--date-from<\/code> and <code>--date-to<\/code>.<\/p>\n\n<p><strong>How do I migrate tracking log data only, and skip migrating archived data?<\/strong><\/p>\n\n<p>Just add the <code>--skip-archive-data<\/code> option.<\/p>\n\n<p><strong>How do I migrate the archived data and skip the tracking data?<\/strong><\/p>\n\n<p>Just add the <code>--skip-log-data<\/code> option.<\/p>\n\n<p><strong>Can I run the command on the Target Piwik server (where data will be imported)?<\/strong><\/p>\n\n<p>No, you must run the command from the source Piwik server (the server which contains the data you want to migrate).<\/p>",
      "documentation":"",
      "changelog":"<p><strong>v1.0.7<\/strong><\/p>\n\n<ul><li>Updated the plugin for compatibility with Piwik 2.10.<\/li>\n<\/ul><p><strong>v1.0.6<\/strong><\/p>\n\n<ul><li><a href=\"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/issues\/6\">#6<\/a>: fixed a PHP 5.3 incompatibility<\/li>\n<\/ul><p><strong>v1.0.5<\/strong><\/p>\n\n<ul><li><a href=\"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/issues\/5\">#5<\/a>: fixed <code>Integrity constraint violation: 1048 Column 'idaction_url' cannot be null<\/code><\/li>\n<\/ul><p><strong>v1.0.4<\/strong><\/p>\n\n<ul><li><a href=\"https:\/\/github.com\/PiwikPRO\/plugin-SiteMigration\/issues\/3\">#3<\/a>: fixed <code>--db-prefix<\/code> option<\/li>\n<\/ul><p><strong>v1.0.3<\/strong><\/p>\n\n<ul><li>Documentation update<\/li>\n<\/ul><p><strong>v1.0.2<\/strong><\/p>\n\n<ul><li>Documentation update &amp; fixed bug when archive_blob tables are not found <\/li>\n<\/ul><p><strong>v1.0.1<\/strong><\/p>\n\n<ul><li>Documentation update<\/li>\n<\/ul><p><strong>v1.0.0<\/strong><\/p>\n\n<ul><li>First stable release<\/li>\n<li>Bugfixes<\/li>\n<\/ul><p><strong>v0.1.1<\/strong><\/p>\n\n<ul><li>Changed license to free plugin<\/li>\n<li>Changed name to SiteMigration<\/li>\n<\/ul><p><strong>v0.1.0<\/strong><\/p>\n\n<ul><li>Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/SiteMigration\/download\/1.0.8"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"SnoopyBehavioralScoring",
  "displayName":"Snoopy Behavioral Scoring",
  "owner":"spletnik",
  "description":"User behaviour scoring plugin for piwik. It allows you to score your visitors depending on goals reached, pages visited, email campaigns opened and ot",
  "homepage":"http:\/\/spletnik.si\/",
  "createdDateTime":"2015-12-08 20:52:03",
  "donate":{"paypal":"srle@spletnik.si",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/spletnik\/snoopy-behavioral-scoring",
  "lastUpdated":"2016-01-27 08:50:04",
  "latestVersion":"0.1.2",
  "numDownloads":1211,"screenshots":[],"previews":[],"activity":{"numCommits":"18",
    "numContributors":"1",
    "lastCommitDate":"2016-01-27 08:49:31"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-12-08 20:52:03",
    "requires":{"piwik":">=2.15.0",
      "php":">=5.4.0"},"readme":"",
    "numDownloads":428,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/spletnik\/snoopy-behavioral-scoring\/commits\/v1.0.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/SnoopyBehavioralScoring\/download\/0.1.0"},{"name":"0.1.2",
    "release":"2016-01-27 08:50:04",
    "requires":{"piwik":">=2.15.0",
      "php":">=5.4.0"},"readme":"# Piwik Snoopy Plugin\n\n## Description\n\nSnoopy is a User behaviour scoring plugin for piwik. It allows you to score your visitors depending on goals reached, pages visited, email campaigns opened and other factors. In other words this plugin enables you to score your visitors based on actions they do on your website. It has a robust scoring methodology for heating and cooling visitor score.\n\nSnoopy also provides some basic API functions to integrate it with third party applications souch as your CRM or lead management system. More information about the API can be found on [github wiki](https:\/\/github.com\/spletnik\/snoopy-behavioral-scoring\/wiki\/API).\n\n## Installation\n### Automatic\nInstall it via Piwik Marketplace and [configure](#configuration) plugin.\n### Manual installation\n1. Download whole repository as ZIP.\n2. Go to your piwik Administration => Marketplace and click on \"upload a plugin in .zip format.\"\n3. After plugin is upladed press \"Activate plugin\"\n\nIf you did everything correct and you have sufficient permissions on folder plugins, Snoopy should be successfully installed.\n\nNow all you need to do is to set your configuration and create a cron that calculates visitors scores.\n\n## Configuration\n\n### Required\nBefore Snoopy starts scoring visitors you first have to tweak some configuration to match your needs.\n\n1. Matching site:\nYou have to select for which site your Snoopy scores visitors. For now only one website property tracking is available.\n\n2. Matching goal:\nSnoopy will start scoring only when specific goal is achieved. You can choose one or more goals as entry point to start .ing.\n\n3. Cooling factor:\nCooling factor is number that tells you how fast visitors will loose their score.\n\nHere is example simulation for factor 1.1\n\n|Number of inactive days|Current penalty|Penalty since beginning|Visitor scores\t|\n|-----------------------|---------------|-----------------------|---------------|\n|\t\t\t\t\t\t|\t\t\t\t|\t\t\t\t\t\t|\t100\t\t  \t|\n|\t1\t\t\t\t\t|\t1\t\t\t|\t1\t\t\t\t\t|\t99\t\t  \t|\n|\t2\t\t\t\t\t|\t1.1\t\t\t|\t2.1\t\t\t\t\t|\t97.9\t\t|\n|\t3\t\t\t\t\t|\t1.21\t\t|\t3.31\t\t\t\t|\t96.69\t\t|\n|\t4\t\t\t\t\t|\t1.331\t\t|\t4.641\t\t\t\t|\t95.359\t\t|\n|\t5\t\t\t\t\t|\t1.4641\t\t|\t6.1051\t\t\t\t|\t93.8949\t\t|\n|\t6\t\t\t\t\t|\t1.61051\t\t|\t7.71561\t\t\t\t|\t92.28439\t|\n|\t7\t\t\t\t\t|\t1.771561\t|\t9.487171\t\t\t|\t90.512829\t|\n|\t8\t\t\t\t\t|\t1.9487171\t|\t11.4358881\t\t\t|\t88.5641119\t|\n|\t9\t\t\t\t\t|\t2.14358881\t|\t13.57947691\t\t\t|\t86.42052309\t|\n|\t10\t\t\t\t\t|\t2.357947691\t|\t15.9374246\t\t\t|\t84.0625754\t|\n\nFrom the table you can see that on first inactive day you loose 1 point, \non the  second inactive day you loose 1*factor point\non third inactive day you loose second_day*factor point etc.\n\nThose configuration parameters are mandatory for Snoopy to score propperly. \n\nWhen you are finished with configuration you just need to put this comand as your cronjob and Snoopy will start to calculate your score (This will recalcualte score hourly):\n\n**0 * * * * \/piwik_root\/console snoopybehavioralscoring:recalculate-score**\n\nAdditionally you can pipe log to file:\n\n**0 * * * * \/piwik_root\/console snoopybehavioralscoring:recalculate-score >> \/var\/log\/snoopy.log**\n\n### Optional\n- Enable console full debug\n\nWhen running recalculate-score some additional info is printed, that could be usefull when debuging why score is not calculated properly.\n\n- Campaign entry bonus\n\nBonus score that is added when visitor visits your webpage trough campaign (Google Analytics campaign parameters are set)\n- Special URL's\n\nURL;SCORE pairs that make some of your URL's worth more score points. \n\nFor example:\n\nhttp:\/\/example.com\/contact;3\n\nHere contact page is worth 3 points instead just one.\n## FAQ\n\n__When does my visitors gets scored.__\n\nWhen they reach specified goal in plugin settings.\n\n## Changelog\n0.1.2 - Bugfix for settings + Fixed fatal error on first calculation + Fixed permissions problems\n0.1.1 - Readme changes + minor fixes\n0.1.0 - Initial version\n\n## Support\n\nPlease direct any feedback to info@spletnik.si\n",
    "numDownloads":783,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/spletnik\/snoopy-behavioral-scoring\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Snoopy is a User behaviour scoring plugin for piwik. It allows you to score your visitors depending on goals reached, pages visited, email campaigns opened and other factors. In other words this plugin enables you to score your visitors based on actions they do on your website. It has a robust scoring methodology for heating and cooling visitor score.<\/p>\n\n<p>Snoopy also provides some basic API functions to integrate it with third party applications souch as your CRM or lead management system. More information about the API can be found on <a href=\"https:\/\/github.com\/spletnik\/snoopy-behavioral-scoring\/wiki\/API\">github wiki<\/a>.<\/p>\n\n",
      "faq":"<p><strong>When does my visitors gets scored.<\/strong><\/p>\n\n<p>When they reach specified goal in plugin settings.<\/p>",
      "documentation":"",
      "changelog":"<p>0.1.2 - Bugfix for settings + Fixed fatal error on first calculation + Fixed permissions problems\n0.1.1 - Readme changes + minor fixes\n0.1.0 - Initial version<\/p>"},"download":"\/api\/2.0\/plugins\/SnoopyBehavioralScoring\/download\/0.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"TasksTimetable",
  "displayName":"Tasks Timetable",
  "owner":"piwik",
  "description":"Plugin to list all scheduled tasks: Name of the tasks and next execution time displayed in a table.",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2014-12-23 01:09:03",
  "donate":{},"support":[],"isTheme":false,"keywords":["monitoring",
    "tasks",
    "scheduled",
    "timetable"],"basePrice":0,"authors":[{"name":"Megan Liang",
    "email":null,"homepage":null},{"name":"Jay Deshpande",
    "email":null,"homepage":null},{"name":"Piwik",
    "email":"test1@example.com",
    "homepage":"http:\/\/piwik.org"}],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-TasksTimetable",
  "lastUpdated":"2014-12-23 01:14:35",
  "latestVersion":"0.1.3",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/TasksTimetable\/images\/Timetable.png"],"previews":[],"activity":{"numCommits":"64",
    "numContributors":"6",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-12-23 01:09:03",
    "requires":{"piwik":">=2.0.4-b1"},"readme":"",
    "numDownloads":0,"license":{"name":"GPL v3",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-TasksTimetable\/commits\/0.1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TasksTimetable\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-12-23 01:09:21",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPL v3",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-TasksTimetable\/commits\/0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TasksTimetable\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-12-23 01:13:01",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPL v3",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-TasksTimetable\/commits\/0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TasksTimetable\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2014-12-23 01:14:35",
    "requires":{"piwik":">=2.0.4-b5"},"readme":"# Piwik TasksTimetable Plugin\n\n## Description\n\nPlugin to list all scheduled tasks: Name of the tasks and next execution time displayed in a table. \n\n## FAQ\n\n__Where can I find the timetable?__\n\nIt is located as a menu item \"Scheduled Tasks\" under diagnostics on the settings page.\n\n## Changelog\n\n* 0.1.0 Initial release\n\n## Support\n\nPlease direct any feedback to [hello@piwik.org](mailto:hello@piwik.org)\n\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-TasksTimetable\/commits\/0.1.3",
    "readmeHtml":{"description":"\n\n<p>Plugin to list all scheduled tasks: Name of the tasks and next execution time displayed in a table.<\/p>\n\n",
      "faq":"<p><strong>Where can I find the timetable?<\/strong><\/p>\n\n<p>It is located as a menu item \"Scheduled Tasks\" under diagnostics on the settings page.<\/p>",
      "documentation":"",
      "changelog":"<ul><li>0.1.0 Initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/TasksTimetable\/download\/0.1.3"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"TopPagesByActions",
  "displayName":"Top Pages By Actions",
  "owner":"chanzler",
  "description":"Live widget that displays the top pages by actions in a 20 minute timespan. Auto-refresh interval can be configured.",
  "homepage":"http:\/\/github.com\/chanzler\/piwik-top-pages-by-actions",
  "createdDateTime":"2014-11-03 15:20:05",
  "donate":{"paypal":"paypal@familiekanzler.de",
    "bitcoin":null},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/chanzler\/piwik-top-pages-by-actions",
  "lastUpdated":"2014-11-11 10:32:03",
  "latestVersion":"0.1.3",
  "numDownloads":4124,"screenshots":[],"previews":[],"activity":{"numCommits":null,"numContributors":null,"lastCommitDate":"2014-11-11 10:30:36"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.1",
    "release":"2014-11-03 15:20:05",
    "requires":{"piwik":">=2.0.0"},"readme":"",
    "numDownloads":112,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-top-pages-by-actions\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TopPagesByActions\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2014-11-08 20:26:03",
    "requires":{"piwik":">=2.0.0"},"readme":"",
    "numDownloads":60,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-top-pages-by-actions\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TopPagesByActions\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2014-11-11 10:32:03",
    "requires":{"piwik":">=2.0.0"},"readme":"# Piwik TopPagesByActions Plugin\n\n## Description\n\nThis is a plugin for the Open Source Web Analytics platform Piwik. If enabled, it will add a new widget that you can add to your dashboard.\n\nThe widget will show the top performing pages of a site that auto-refreshes every x seconds. It shows the number of actions and the title of the page. It is auto-sorting the entries.\n\n**This plugin should run fine with installations with up to 100.000 page impressions per day. If you run a very large piwik installation and have performance issues with this plugin, please contact me - there is a solution for this. I have it up and running in an installation with more than 10 million visits per day.**\n\n(Tested with piwik 2.8.3, but supposed to run with older versions)\n\n## Installation\n\nInstall it via Piwik Marketplace OR install manually:\n\n1. Clone the plugin into the plugins directory of your Piwik installation.\n\n   ```\n   cd plugins\/\n   git clone https:\/\/github.com\/chanzler\/piwik-top-pages-by-actions.git TopPagesByActions\n   ```\n\n2. Login as superuser into your Piwik installation and activate the plugin under Settings -> Plugins\n\n3. You will now find the widget under the Live! section.\n\n## FAQ\n\n###Features\nHere is a list of features that are included in this project:\n\n* Live widget (\"Bestperforming pages\") with key performance indices\n\n###Configuration\n*Refresh interval*: Defines how often the widgets will be updated. Every 30 seconds is a good value to choose.\n\n*Number of entries*: Defines the number of entries to show in the widget.\n\n## Changelog\n\n### 0.1.3 Bugfix Release\n* fixed english translation of table headers\n\n### 0.1.2 Bugfix Release\n* removed javascript console log\n* fixed bug with timezones that match \/^UTC[+-]*\/\n\n### 0.1.1 Bugfix Release\n* fixed css bug in internet explorer\n\n### 0.1.0 First Beta\n* initial release\n\n## License\n\nGPL v3 or later\n\n## Support\n\n* Please direct any feedback to [frank@intersolve.de](mailto:frank@intersolve.de)\n\n## Contribute\n\nIf you are interested in contributing to this plugin, feel free to send pull requests!\n\n",
    "numDownloads":3952,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/chanzler\/piwik-top-pages-by-actions\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This is a plugin for the Open Source Web Analytics platform Piwik. If enabled, it will add a new widget that you can add to your dashboard.<\/p>\n\n<p>The widget will show the top performing pages of a site that auto-refreshes every x seconds. It shows the number of actions and the title of the page. It is auto-sorting the entries.<\/p>\n\n<p><strong>This plugin should run fine with installations with up to 100.000 page impressions per day. If you run a very large piwik installation and have performance issues with this plugin, please contact me - there is a solution for this. I have it up and running in an installation with more than 10 million visits per day.<\/strong><\/p>\n\n<p>(Tested with piwik 2.8.3, but supposed to run with older versions)<\/p>\n\n",
      "faq":"<h3>Features<\/h3>\n\n<p>Here is a list of features that are included in this project:<\/p>\n\n<ul><li>Live widget (\"Bestperforming pages\") with key performance indices<\/li>\n<\/ul><h3>Configuration<\/h3>\n\n<p><em>Refresh interval<\/em>: Defines how often the widgets will be updated. Every 30 seconds is a good value to choose.<\/p>\n\n<p><em>Number of entries<\/em>: Defines the number of entries to show in the widget.<\/p>",
      "documentation":"",
      "changelog":"<h3>0.1.3 Bugfix Release<\/h3>\n\n<ul><li>fixed english translation of table headers<\/li>\n<\/ul><h3>0.1.2 Bugfix Release<\/h3>\n\n<ul><li>removed javascript console log<\/li>\n<li>fixed bug with timezones that match \/^UTC[+-]*\/<\/li>\n<\/ul><h3>0.1.1 Bugfix Release<\/h3>\n\n<ul><li>fixed css bug in internet explorer<\/li>\n<\/ul><h3>0.1.0 First Beta<\/h3>\n\n<ul><li>initial release<\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/TopPagesByActions\/download\/0.1.3"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"TrackingCodeCustomizer",
  "displayName":"Tracking Code Customizer",
  "owner":"jbrule",
  "description":"Allows Piwik admininstrators to customize the tracking code that is autogenerated for users. This is useful for directing requests to the correct serv",
  "homepage":"https:\/\/github.com\/jbrule\/piwikplugin-TrackingCodeCustomizer",
  "createdDateTime":"2015-04-20 16:28:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/jbrule\/piwikplugin-TrackingCodeCustomizer",
  "lastUpdated":"2015-11-20 19:16:09",
  "latestVersion":"0.1.2",
  "numDownloads":2647,"screenshots":[],"previews":[],"activity":{"numCommits":"5",
    "numContributors":"1",
    "lastCommitDate":"2016-04-26 07:22:01"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2015-04-20 16:28:03",
    "requires":{"piwik":">=v2.9.0"},"readme":"",
    "numDownloads":1,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/jbrule\/piwikplugin-TrackingCodeCustomizer\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TrackingCodeCustomizer\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2015-04-20 16:30:04",
    "requires":{"piwik":">=v2.9.0"},"readme":"",
    "numDownloads":1298,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/jbrule\/piwikplugin-TrackingCodeCustomizer\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TrackingCodeCustomizer\/download\/0.1.1"},{"name":"0.1.2",
    "release":"2015-11-20 19:16:09",
    "requires":{"piwik":">=v2.12.0"},"readme":"# Piwik TrackingCodeCustomizer Plugin\nTracking Code Customizer plugin for the Piwik Web Analytics software package\n\n##Description\nAllows Piwik admininstrators to customize the tracking code that is autogenerated for users. This is useful for directing requests to the correct servers in a multi-server setup, include additional parameters in default tracking, or to perform conditional checks before initiating a tracking call. \n\n##Instructions\nThe easiest way to install is to find the plugin in the [Piwik Marketplace](http:\/\/plugins.piwik.org\/).\n\n##Usage\n\nSet additional default OPTIONS for tracking. The follwing is entered into the \"options\" field.\n\n```javascript\nif (typeof(hash) !== 'undefined'){_paq.push(['setCustomVariable','1','U',hash,'visit']); _paq.push(['setUserId',hash]);};\n```\nResultant tracking code\n```javascript\n<!-- Piwik -->\n<script type=\"text\/javascript\">\n  var _paq = _paq || [];\n  if (typeof(hash) !== 'undefined'){_paq.push(['setCustomVariable','1','U',hash,'visit']); _paq.push(['setUserId',hash]);};\n  _paq.push(['trackPageView']);\n  _paq.push(['enableLinkTracking']);\n  var u=\"\/\/webanalytics-tracker.XXXX.XXX\/\";\n_paq.push(['setTrackerUrl', u+'piwik.php']);\n    _paq.push(['setSiteId', 1]);\n    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];\n    g.type='text\/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);\n  })();\n<\/script>\n<noscript><p><img src=\"\/\/webanalytics-tracker.XXXX.XXX\/piwik.php?idsite=1\" style=\"border:0;\" alt=\"\" \/><\/p><\/noscript>\n<!-- End Piwik Code -->\n```\n\n##Changelog\n0.1.2 Updated for compatibility with Piwik v2.15 and included new registerEvents() hook for compatibility with Piwik 3.0\n0.1.1 Version bump to activation Marketplace hook\n0.1.0 Initial Release\n\n##License\nGPL v3 \/ fair use\n\n## Support\nPlease [report any issues](https:\/\/github.com\/jbrule\/piwikplugin-TrackingCodeCustomizer\/issues). Pull requests welcome.\n",
    "numDownloads":1348,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/jbrule\/piwikplugin-TrackingCodeCustomizer\/commits\/v1.1",
    "readmeHtml":{"description":"\n\n<p>Allows Piwik admininstrators to customize the tracking code that is autogenerated for users. This is useful for directing requests to the correct servers in a multi-server setup, include additional parameters in default tracking, or to perform conditional checks before initiating a tracking call.<\/p>\n\n",
      "faq":"",
      "documentation":"",
      "changelog":"<p>0.1.2 Updated for compatibility with Piwik v2.15 and included new registerEvents() hook for compatibility with Piwik 3.0\n0.1.1 Version bump to activation Marketplace hook\n0.1.0 Initial Release<\/p>"},"download":"\/api\/2.0\/plugins\/TrackingCodeCustomizer\/download\/0.1.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"TreemapVisualization",
  "displayName":"Treemap Visualization",
  "owner":"piwik",
  "description":"This Piwik plugin adds a new report visualization: the treemap. With this plugin you can view your data as a graph that displays rows with rectangles ",
  "homepage":"http:\/\/piwik.org",
  "createdDateTime":"2014-12-23 00:37:31",
  "donate":{},"support":[],"isTheme":false,"keywords":["treemap",
    "graph",
    "visualization",
    "infovis",
    "jit"],"basePrice":0,"authors":[{"name":"Piwik",
    "email":"test1@example.com",
    "homepage":"http:\/\/piwik.org"}],"repositoryUrl":"https:\/\/github.com\/piwik\/plugin-TreemapVisualization",
  "lastUpdated":"2014-12-23 00:38:05",
  "latestVersion":"1.0.1",
  "numDownloads":0,"screenshots":["https:\/\/plugins.piwik.org\/TreemapVisualization\/images\/Treemap.png",
    "https:\/\/plugins.piwik.org\/TreemapVisualization\/images\/screen-resolution-treemap.png",
    "https:\/\/plugins.piwik.org\/TreemapVisualization\/images\/social-network-treemap.png"],"previews":[],"activity":{"numCommits":"106",
    "numContributors":"6",
    "lastCommitDate":"1970-01-01 00:33:35"},"featured":true,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"1.0",
    "release":"2014-12-23 00:37:32",
    "requires":{"piwik":">=2.0.0",
      "php":">=5.3.0"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-TreemapVisualization\/commits\/1.0",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/TreemapVisualization\/download\/1.0"},{"name":"1.0.1",
    "release":"2014-12-23 00:38:05",
    "requires":{"piwik":">=2.0.0",
      "php":">=5.3.0"},"readme":"# Description\n\nTreemapVisualization is a Piwik plugin that provides the treemap report visualization. \n\n## Features\n\nThe treemap visualization will show rows of data tables as squares whose size correspond to the metric of the row. For example, if you're looking at visits, the row with the most visits will take up the most space. Just like the other graph visualizations, you can use it to easily see which rows have the largest values. The treemap differs from other graphs though, in that it shows much more rows.\n\nThe treemap visualization will also show you one thing that no other visualization included with Piwik does: the evolution of each row. You can hover over a treemap square to see how much the row changed from the last period. Each treemap square is also colored based on the evolution. A red square means the change is negative; a green square means the change is positive. The more green the bigger the change; the more red the smaller the change.\n\n## Limitations\n\nCurrently there is one known limitation:\n\n* Treemaps will not work with flattened tables. Currently, if a table is flattened, the treemap icon will be removed.\n",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":"http:\/\/plugins.piwik.org\/TreemapVisualization\/1.0.1\/license"},"repositoryChangelogUrl":"https:\/\/github.com\/piwik\/plugin-TreemapVisualization\/commits\/1.0.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/TreemapVisualization\/download\/1.0.1"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"UptimeRobotMonitor",
  "displayName":"Uptime Robot Monitor",
  "owner":"job963",
  "description":"Plugin for displaying UptimeRobot data in Piwik",
  "homepage":"https:\/\/github.com\/job963\/UptimeRobot-Monitor",
  "createdDateTime":"2014-10-26 13:14:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/job963\/UptimeRobot-Monitor",
  "lastUpdated":"2014-12-04 20:20:04",
  "latestVersion":"0.2",
  "numDownloads":4572,"screenshots":[],"previews":[],"activity":{"numCommits":"9",
    "numContributors":"2",
    "lastCommitDate":"2016-02-12 19:01:07"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-10-26 13:14:03",
    "requires":{},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/UptimeRobot-Monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/UptimeRobotMonitor\/download\/0.1.0"},{"name":"0.1.1",
    "release":"2014-10-26 13:24:04",
    "requires":{},"readme":"",
    "numDownloads":440,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/UptimeRobot-Monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/UptimeRobotMonitor\/download\/0.1.1"},{"name":"0.1.3",
    "release":"2014-11-26 06:38:03",
    "requires":{},"readme":"",
    "numDownloads":152,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/UptimeRobot-Monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/UptimeRobotMonitor\/download\/0.1.3"},{"name":"0.2",
    "release":"2014-12-04 20:20:04",
    "requires":{},"readme":"# UptimeRobot Monitor Plugin\n\n## Description\n\nThis plugin shows data, collected by UptimeRobot, in Piwik. This helps you to see all information about your website in one system without having the need to login into several systems.\n\nThe access to UptimeRobot will be managed by an individual monitor API key, which you have to create in UptimeRobot (see FAQ).\n\n\n## Screenshots\n**LogList Widget**  \n![](https:\/\/github.com\/job963\/UptimeRobot-Monitor\/raw\/master\/screenshots\/widgetLogList.png)\n\n**TimeBar Widget**  \n![](https:\/\/github.com\/job963\/UptimeRobot-Monitor\/raw\/master\/screenshots\/widgetTimeBar.png)\n\n**Plugin Settings**  \n![](https:\/\/github.com\/job963\/UptimeRobot-Monitor\/raw\/master\/screenshots\/SettingsDE.png)\n\n\n## Installation\n\nInstall it via [Piwik Marketplace](http:\/\/plugins.piwik.org\/).\n\nOR \n\nInstall manually:\n\n1. Clone the plugin into the plugins directory of your Piwik installation.\n\n   ```\n   cd plugins\/\n   git clone https:\/\/github.com\/job963\/UptimeRobot-Monitor.git UptimeRobotMonitor\n   ```\n\n2. Login as superuser into your Piwik installation and activate the plugin under Settings -> Plugins\n\n3. Goto Settings -> Plugin Settings an setup the values for the widget.\n\n4. You will now find the widget under the UptimeRobotMonitor -> UptimeRobot - Latest Events.\n\n## Changelog\n\n* **0.1.0 Initial release**\n  * Widget for latest events\n  * Setting for monitor API key\n\n* **0.1.1 Small corrections**\n  * Small correction in README\n\n* **0.1.2 New Language added**\n  * Now usable in hungarian language (thanks to sagikazarmark)\n\n* **0.1.3 Readme updated**\n  * New version description added\n\n* **0.2 Timebar widget added**\n  * New widget for displaying the log as a time bar\n  * Support of multiple servers\n\n## FAQ\n\n**Where do I get the API key?**  \n\nGo in UptimeRoboto to \"My Settings\" and click in the paragraph \"Monitor-specific API Keys\" on \"Show\/hide it\". Search as next for the name of the desired website. Now you will see the API key for monitoring this website.  \nThis API key you have to enter in the plugin settings of _UptimeRobotMonitor_.\n\n## License\n\nGPL v3 or later\n\n## Support\n\nPlease report any issues directly in [Github](https:\/\/github.com\/job963\/UptimeRobot-Monitor\/issues). \n\n## Contribute \n\nIf you are interested in contributing to this plugin, feel free to send pull requests!\n\n",
    "numDownloads":3980,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/job963\/UptimeRobot-Monitor\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>This plugin shows data, collected by UptimeRobot, in Piwik. This helps you to see all information about your website in one system without having the need to login into several systems.<\/p>\n\n<p>The access to UptimeRobot will be managed by an individual monitor API key, which you have to create in UptimeRobot (see FAQ).<\/p>\n\n",
      "faq":"<p><strong>Where do I get the API key?<\/strong><\/p>\n\n<p>Go in UptimeRoboto to \"My Settings\" and click in the paragraph \"Monitor-specific API Keys\" on \"Show\/hide it\". Search as next for the name of the desired website. Now you will see the API key for monitoring this website.\nThis API key you have to enter in the plugin settings of <em>UptimeRobotMonitor<\/em>.<\/p>",
      "documentation":"",
      "changelog":"<ul><li><p><strong>0.1.0 Initial release<\/strong><\/p>\n\n<ul><li>Widget for latest events<\/li>\n<li>Setting for monitor API key<\/li>\n<\/ul><\/li>\n<li><p><strong>0.1.1 Small corrections<\/strong><\/p>\n\n<ul><li>Small correction in README<\/li>\n<\/ul><\/li>\n<li><p><strong>0.1.2 New Language added<\/strong><\/p>\n\n<ul><li>Now usable in hungarian language (thanks to sagikazarmark)<\/li>\n<\/ul><\/li>\n<li><p><strong>0.1.3 Readme updated<\/strong><\/p>\n\n<ul><li>New version description added<\/li>\n<\/ul><\/li>\n<li><p><strong>0.2 Timebar widget added<\/strong><\/p>\n\n<ul><li>New widget for displaying the log as a time bar<\/li>\n<li>Support of multiple servers<\/li>\n<\/ul><\/li>\n<\/ul>"},"download":"\/api\/2.0\/plugins\/UptimeRobotMonitor\/download\/0.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"VisitorAvatar",
  "displayName":"Visitor Avatar",
  "owner":"surenjie",
  "description":"Custom display visitors avatar(URL) and description(Title & Alt)",
  "homepage":"http:\/\/plugins.piwik.org\/VisitorAvatar",
  "createdDateTime":"2014-11-06 11:42:04",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/surenjie\/VisitorAvatar",
  "lastUpdated":"2014-11-18 06:08:04",
  "latestVersion":"0.2.2",
  "numDownloads":3871,"screenshots":[],"previews":[],"activity":{"numCommits":"14",
    "numContributors":"1",
    "lastCommitDate":"2014-11-18 06:08:02"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.0",
    "release":"2014-11-06 11:42:04",
    "requires":{"piwik":">=2.8.3"},"readme":"",
    "numDownloads":110,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/surenjie\/VisitorAvatar\/commits\/v0.1.2",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/VisitorAvatar\/download\/0.1.0"},{"name":"0.2.0",
    "release":"2014-11-13 08:36:03",
    "requires":{"piwik":">=2.8.3"},"readme":"",
    "numDownloads":0,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/surenjie\/VisitorAvatar\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/VisitorAvatar\/download\/0.2.0"},{"name":"0.2.1",
    "release":"2014-11-13 09:34:03",
    "requires":{"piwik":">=2.8.3"},"readme":"",
    "numDownloads":120,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/surenjie\/VisitorAvatar\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/VisitorAvatar\/download\/0.2.1"},{"name":"0.2.2",
    "release":"2014-11-18 06:08:04",
    "requires":{"piwik":">=2.5.0"},"readme":"# Piwik VisitorAvatar Plugin\n\nCustom display visitors avatar(URL) and description(Title & Alt)\n\nhttp:\/\/plugins.piwik.org\/VisitorAvatar\n\n## Description\n\n  * Step1 Tracking Code\n\n    Reference:\n      \n      http:\/\/piwik.org\/docs\/custom-variables\/#track-a-custom-variable-in-javascript\n    \n      http:\/\/developer.piwik.org\/api-reference\/tracking-javascript#custom-variables\n\n    Example:\n\n    ```JavaScript\n    \/\/ you can set up to 5 custom variables for each visitor\n    _paq.push([\n        \"setCustomVariable\", \n        1, \n        \"RTX\", \n        document.cookie.match(new RegExp(\"(^| )_login_name=([^;]*)(;|$)\"))[2], \n        \"visit\"\n    ]);\n    ```\n\n  * Step2 Plugin Settings\n\n    1. Name of the custom variable : \n      \n      \"RTX\" (Previous set of custom variable names, no default)\n\n    2. Visitor avatar url rules : \n      \n      \"\/\/rtx.oa.com\/avatars\/%s\/profile.jpg\" (The default is \"plugins\/VisitorAvatar\/images\/default_avatar.gif\")\n\n    3. Visitor description text rules : \n      \n      \"my rtx is %s\" (The default is \"%s\")\n\n\n  * Step3 Visitor Profile\n\n    _View Visitors custom avatar and description_\n\n## Tutorial\n\n![Step1 Tracking Code](https:\/\/raw.githubusercontent.com\/surenjie\/VisitorAvatar\/master\/screenshots\/Step1_Tracking_Code.png \"Step1 Tracking Code\")\n\n![Step2 Plugin Settings](https:\/\/raw.githubusercontent.com\/surenjie\/VisitorAvatar\/master\/screenshots\/Step2_Plugin_Settings.png \"Step2 Plugin Settings\")\n\n![Step3 Visitor Profile](https:\/\/raw.githubusercontent.com\/surenjie\/VisitorAvatar\/master\/screenshots\/Step3_Visitor_Profile.png \"Step3 Visitor Profile\")\n\n## Support\n\nPlease direct any feedback to i@renjie.me\n\nIf you experience any issues feel free to file an issue at https:\/\/github.com\/surenjie\/VisitorAvatar\/issues",
    "numDownloads":3641,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/surenjie\/VisitorAvatar\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<ul><li><p>Step1 Tracking Code<\/p>\n\n<p>Reference:<\/p>\n\n<p>http:\/\/piwik.org\/docs\/custom-variables\/#track-a-custom-variable-in-javascript<\/p>\n\n<p>http:\/\/developer.piwik.org\/api-reference\/tracking-javascript#custom-variables<\/p>\n\n<p>Example:<\/p>\n\n<pre><code>\/\/ you can set up to 5 custom variables for each visitor\n_paq.push([\n    \"setCustomVariable\", \n    1, \n    \"RTX\", \n    document.cookie.match(new RegExp(\"(^| )_login_name=([^;]*)(;|$)\"))[2], \n    \"visit\"\n]);\n<\/code><\/pre><\/li>\n<li><p>Step2 Plugin Settings<\/p>\n\n<ol><li><p>Name of the custom variable :<\/p>\n\n<p>\"RTX\" (Previous set of custom variable names, no default)<\/p><\/li>\n<li><p>Visitor avatar url rules :<\/p>\n\n<p>\"\/\/rtx.oa.com\/avatars\/%s\/profile.jpg\" (The default is \"plugins\/VisitorAvatar\/images\/default_avatar.gif\")<\/p><\/li>\n<li><p>Visitor description text rules :<\/p>\n\n<p>\"my rtx is %s\" (The default is \"%s\")<\/p><\/li>\n<\/ol><\/li>\n<li><p>Step3 Visitor Profile<\/p>\n\n<p><em>View Visitors custom avatar and description<\/em><\/p><\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":""},"download":"\/api\/2.0\/plugins\/VisitorAvatar\/download\/0.2.2"}],"isDownloadable":true,"consumer":{"license":null}},{"name":"WebsiteGroups",
  "displayName":"Website Groups",
  "owner":"PiwikPRO",
  "description":"Assign websites to groups in your 'All Websites' dashboard. Useful to get a view by client or category.",
  "homepage":"http:\/\/piwik.pro",
  "createdDateTime":"2014-11-07 03:14:03",
  "donate":{},"support":[],"isTheme":false,"keywords":[],"basePrice":0,"authors":[],"repositoryUrl":"https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups",
  "lastUpdated":"2016-03-09 18:04:03",
  "latestVersion":"0.3.0",
  "numDownloads":5489,"screenshots":[],"previews":[],"activity":{"numCommits":"70",
    "numContributors":"6",
    "lastCommitDate":"2016-04-15 22:56:33"},"featured":false,"isFree":true,"isPaid":false,"isCustomPlugin":false,"shop":null,"versions":[{"name":"0.1.2",
    "release":"2014-11-07 03:14:03",
    "requires":{"piwik":">=2.1.1-b1"},"readme":"",
    "numDownloads":3,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/WebsiteGroups\/download\/0.1.2"},{"name":"0.1.3",
    "release":"2014-11-07 03:18:03",
    "requires":{"piwik":">=2.1.1-b1"},"readme":"",
    "numDownloads":2156,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/WebsiteGroups\/download\/0.1.3"},{"name":"0.1.4",
    "release":"2015-07-28 14:50:03",
    "requires":{"piwik":">=2.1.1-b1"},"readme":"",
    "numDownloads":992,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/commits\/v0.1.1",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/WebsiteGroups\/download\/0.1.4"},{"name":"0.2.0",
    "release":"2015-11-11 14:48:03",
    "requires":{"piwik":">=2.15.0"},"readme":"",
    "numDownloads":1320,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/commits\/0.1.3",
    "readmeHtml":{"description":"",
      "faq":"",
      "changelog":"",
      "documentation":""},"download":"\/api\/2.0\/plugins\/WebsiteGroups\/download\/0.2.0"},{"name":"0.3.0",
    "release":"2016-03-09 18:04:03",
    "requires":{"piwik":">=2.16.0"},"readme":"# Piwik WebsiteGroups Plugin\n\nMaster [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-WebsiteGroups.svg?branch=master)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-WebsiteGroups)\nDevelop [![Build Status](https:\/\/travis-ci.org\/PiwikPRO\/plugin-WebsiteGroups.svg?branch=develop)](https:\/\/travis-ci.org\/PiwikPRO\/plugin-WebsiteGroups)\n\n## Description\n\nFeatures of this plugin:\n\n * Users can assign websites to groups in the UI\n * 'All Websites' dashboard shows websites grouped by Group, and for each group it shows the sum of visits\/actions\/revenue for websites within this group\n * In the 'All Websites' dashboard, the Super User can see an aggregated number of visits\/pages for the group. Websites appear below their group row\n * A user can set the groups within the 'All Websites' dashboard\n * The website selector shows the website groups prefixed with the group name\n * The website selector allows you to search for groups\n\n## Changelog\n\n__v.0.3.0__\n- PPCDEV-2609 Compatibility with Piwik 2.16.0\n\n__v.0.2.0__\n- compatibility with Piwik 2.15.0\n\n## Support\n\nPlease direct any feedback to [contact@piwik.pro](mailto:contact@piwik.pro)\n\nIf you experience any issues feel free to file an issue at [https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/issues](https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/issues)\n",
    "numDownloads":1018,"license":{"name":"GPLv3+",
      "url":""},"repositoryChangelogUrl":"https:\/\/github.com\/PiwikPRO\/plugin-WebsiteGroups\/commits\/v0.1.1",
    "readmeHtml":{"description":"\n\n<p>Features of this plugin:<\/p>\n\n<ul><li>Users can assign websites to groups in the UI<\/li>\n<li>'All Websites' dashboard shows websites grouped by Group, and for each group it shows the sum of visits\/actions\/revenue for websites within this group<\/li>\n<li>In the 'All Websites' dashboard, the Super User can see an aggregated number of visits\/pages for the group. Websites appear below their group row<\/li>\n<li>A user can set the groups within the 'All Websites' dashboard<\/li>\n<li>The website selector shows the website groups prefixed with the group name<\/li>\n<li>The website selector allows you to search for groups<\/li>\n<\/ul>",
      "faq":"",
      "documentation":"",
      "changelog":"<p><strong>v.0.3.0<\/strong>\n- PPCDEV-2609 Compatibility with Piwik 2.16.0<\/p>\n\n<p><strong>v.0.2.0<\/strong>\n- compatibility with Piwik 2.15.0<\/p>"},"download":"\/api\/2.0\/plugins\/WebsiteGroups\/download\/0.3.0"}],"isDownloadable":true,"consumer":{"license":null}}]}