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: 0caa2e0fcaff7fa0540faa56dfeda2e6770f7476 (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
{"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/AdminNotification\/changelog"},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/AdvancedCampaignReporting\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/AnonymousPiwikUsageMeasurement\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ApiGetWithSitesInfo\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/Bandwidth\/changelog"},"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\/0.5.0\/piwik-barometer-01.png",
    "https:\/\/plugins.piwik.org\/Barometer\/images\/0.5.0\/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"},"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":{},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/Barometer\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/Chat\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ClickHeat\/changelog"},"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":{},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/Counter\/changelog"},"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\/0.1.12\/Create_Alert.png",
    "https:\/\/plugins.piwik.org\/CustomAlerts\/images\/0.1.12\/History_Of_Alerts.png",
    "https:\/\/plugins.piwik.org\/CustomAlerts\/images\/0.1.12\/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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/CustomAlerts\/changelog"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/CustomDimensions\/changelog"},"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\/0.1.4\/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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/CustomOptOut\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/CustomTrackerJs\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ExcludeByDDNS\/changelog"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/FeedAnnotation\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/FlagCounter\/changelog"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/FreeMobileMessaging\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/GoogleAuthenticator\/changelog"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/GrabGravatar\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/InterSites\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/IntranetGeoIP\/changelog"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/Ip2Hostname\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/IP2Location\/changelog"},"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":{},"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":{},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/IPv6Usage\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/kDebug\/changelog"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/LdapConnection\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/LdapVisitorInfo\/changelog"},"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\/1.0.8\/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":{},"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":{},"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"},"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":{},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/LiveTab\/changelog"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/LoginHttpAuth\/changelog"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/LoginRevokable\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/LogViewer\/changelog"},"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\/1.0.3\/visual-link-screenshot-on-domz.png",
    "https:\/\/plugins.piwik.org\/page2images-visual-link\/images\/1.0.3\/visual-link-screenshot-on-domz_02.png",
    "https:\/\/plugins.piwik.org\/page2images-visual-link\/images\/1.0.3\/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":{},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/page2images-visual-link\/changelog"},"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&aelia_cs_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&aelia_cs_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&aelia_cs_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&aelia_cs_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&aelia_cs_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&aelia_cs_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"},"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,"changelog":{"url":""},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/PerformanceInfo\/changelog"},"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":{},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/PerformanceMonitor\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/PlatformsReport\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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\" \/><\/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,"changelog":{"url":"http:\/\/plugins.piwik.org\/QueuedTracking\/changelog"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ReferrersManager\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/RerUserDates\/changelog"},"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\/1.0.4\/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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/SecurityInfo\/changelog"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ServerMonitor\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ShibbolethLogin\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/ShortcodeTracker\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/SimplePageBuilder\/changelog"},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/SimpleSysMon\/changelog"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/SiteMigration\/changelog"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/SnoopyBehavioralScoring\/changelog"},"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\/0.1.3\/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"},"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":{},"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":{},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/TasksTimetable\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/TopPagesByActions\/changelog"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/TrackingCodeCustomizer\/changelog"},"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\/1.0.1\/Treemap.png",
    "https:\/\/plugins.piwik.org\/TreemapVisualization\/images\/1.0.1\/screen-resolution-treemap.png",
    "https:\/\/plugins.piwik.org\/TreemapVisualization\/images\/1.0.1\/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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/TreemapVisualization\/changelog"},"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":{},"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":{},"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":{},"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":{},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/UptimeRobotMonitor\/changelog"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/VisitorAvatar\/changelog"},"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"},"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"},"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"},"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"},"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"},"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,"changelog":{"url":"http:\/\/plugins.piwik.org\/WebsiteGroups\/changelog"},"consumer":{"license":null}}]}