-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdata.json
997 lines (975 loc) · 47.9 KB
/
data.json
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
{
"source": {
"goal": {
"status": "release",
"manifest": {
"name": "GOAL.com",
"iconURL": "images/goal/icon16.png",
"icon32URL": "images/goal/icon32.png",
"icon64URL": "images/goal/icon64.png",
"origin": "http://www.goal.com",
"sidebarURL": "http://www.goal.com/mozilla-sidebar",
"description": "The definitive source for football news from around the world.",
"homepageURL": "http://www.goal.com",
"author": "GOAL.com"
},
"lang": {
"en-US": {
"name": "GOAL.com",
"tagline": "We live and breathe football - everywhere, 24/7",
"shortDescription": "The definitive source for football news from around the world.",
"description": "<p>Football, soccer, futbol, calcio, futebol - whatever you call it and whoever you support, we are your definitive football source.</p><p>We have over 530 reporters on the ground in 50+ countries, getting closer to the action. We create original content at source to deliver the news from the leagues, teams and players that matter.</p><p>No wonder over 52 million football fans trust us to keep them ahead of the game."
},
"de": {
"name": "GOAL.com",
"tagline": "Wir leben und atmen den Fußball, überall, 24 Stunden an sieben Tagen in der Woche",
"shortDescription": "Wir sorgen für Gesprächsstoff unter den Fußballbegeisterten auf der ganzen Welt.",
"description": "<p>Football, Soccer, Futbol, Calcio, Futebol – wie auch immer Du es nennst und wen auch immer Du unterstützt: Wir sind Deine allererste Anlaufstelle.</p><p>Mit mehr als 530 Journalisten sind wir in über 50 Ländern ganz nah am Geschehen dran. Bei uns findet Ihr exklusive Nachrichten über die wichtigsten Ligen, Teams und Spieler der Welt.</p><p>Über 52 Millionen Fußball-Fans schenken uns ihr Vertrauen. Wir danken euch dafür!</p>"
},
"fr": {
"name": "GOAL.com",
"tagline": "Nous vivons et respirons football tous les joueurs, 24h/24 et 7j/7.",
"shortDescription": "",
"description": "<p>Football, soccer, futbol, calcio, futebol - peu importe comment vous l'appelez et qui vous supportez, nous sommes votre source pour tout ce qui concerne le football.</p><p>Nous avons 530 journalistes sur le terrain dans plus de 50 pays, au plus près de l'action. Nous créons du contenu original pour vous délivrer les dernières informations des différents championnats, équipes et joueurs.</p><p>Ce n'est pas pour rien que 52 millions de fans de football nous font confiance.</p>"
},
"it": {
"name": "GOAL.com",
"tagline": "Noi viviamo e respiriamo calcio - ovunque, 24/7.",
"shortDescription": "Siamo il punto di riferimento mondiale per le notizie sul calcio.",
"description": "<p>Calcio, football, soccer, futbol, futebol - in qualunque modo lo chiamate e chiunque supportiate, siamo la vostra meta definitiva per lo sport più amato.</p><p>Abbiamo oltre 530 giornalisti sparsi in più di 50 nazioni, sempre sul pezzo. Creiamo contenuti originali sui campionati, le squadre e i giocatori più importanti al mondo.</p><p>Non c'è da stupirsi se più di 52 milioni di appassionati di calcio si affidano a noi per restare sempre aggiornati.</p>"
},
"es": {
"name": "GOAL.com",
"tagline": "Vivimos y respiramos fútbol - en todas partes, 24/7.",
"shortDescription": "",
"description": "<p>Fútbol, fútbol, futbol, calcio, futebol - como se llame y el que usted siga, porque esta es su fuente de fútbol definitiva.</p><p>Tenemos más de 530 periodistas sobre el terreno en más de 50 países, cada vez más cerca de la acción. Creamos contenido original allá donde se producen las noticias de las ligas, equipos y jugadores que importan.</p><p>No es de extrañar que más de 52 millones de aficionados al fútbol confíen en nosotros para estar al tanto de todo lo que sucede.</p>"
},
"es-ES": {
"name": "GOAL.com",
"tagline": "Vivimos y respiramos fútbol - en todas partes, 24/7.",
"shortDescription": "",
"description": "<p>Fútbol, fútbol, futbol, calcio, futebol - como se llame y el que usted siga, porque esta es su fuente de fútbol definitiva.</p><p>Tenemos más de 530 periodistas sobre el terreno en más de 50 países, cada vez más cerca de la acción. Creamos contenido original allá donde se producen las noticias de las ligas, equipos y jugadores que importan.</p><p>No es de extrañar que más de 52 millones de aficionados al fútbol confíen en nosotros para estar al tanto de todo lo que sucede.</p>"
},
"es-AR": {
"name": "GOAL.com",
"tagline": "Vivimos y respiramos fútbol - en todas partes, 24/7.",
"shortDescription": "",
"description": "<p>Fútbol, fútbol, futbol, calcio, futebol - como se llame y el que usted siga, porque esta es su fuente de fútbol definitiva.</p><p>Tenemos más de 530 periodistas sobre el terreno en más de 50 países, cada vez más cerca de la acción. Creamos contenido original allá donde se producen las noticias de las ligas, equipos y jugadores que importan.</p><p>No es de extrañar que más de 52 millones de aficionados al fútbol confíen en nosotros para estar al tanto de todo lo que sucede.</p>"
},
"pt-BR": {
"name": "GOAL.com",
"tagline": "Vivemos e respiramos futebol - em qualquer lugar, a qualquer momento.",
"shortDescription": "A fonte definitiva para notícias de futebol ao redor do mundo.",
"description": "<p>Football, soccer, fútbol, calcio, futebol - não importa como você o chama, ou para quem torce: nós somos a sua fonte definitiva sobre futebol.</p><p>Temos mais de 530 repórteres espalhados por mais de 50 países, deixando você mais perto da ação.</p><p>Criamos conteúdo original na fonte para entregar as notícias das ligas, equipes e jogadores que interessa.</p><p>Não é a toa que mais de 52 milhões de fãs nos elegeram para mantê-los atualizados sobre o jogo.</p>"
},
"id": {
"name": "GOAL.com",
"tagline": "Kami hidup dan bernafas sepakbola - di mana pun, 24 jam sehari dan 7 jam seminggu.",
"shortDescription": "",
"description": "<p>Football, soccer, futbol, calcio, futebol, sepakbola - apa pun Anda menyebutnya dan siapa pun yang Anda dukung, kami adalah sumber utama sepakbola.</p><p>Kami memiliki lebih dari 530 reporter di lebih dari 50 negara untuk membawa Anda merasakan langsung atmosfir sepakbola dunia. Kami menciptakan konten orisinil untuk mengabarkan informasi terbaru dari liga, tim, dan pemain sesuai dengan minat Anda.</p><p>Tak heran jika lebih dari 52 juta fans sepakbola mempercayai kami supaya mereka tak ketinggalan informasi apa pun tentang sepakbola.</p>"
},
"ja": {
"name": "GOAL.com",
"tagline": "週 7 日、1 日 24 時間。どこにいてもサッカーを呼吸する。",
"shortDescription": "世界中からあらゆるサッカーニュースが集まる場所。",
"description": "<p>フットボール、サッカー、フトボル、カルチョ、フチボウ…どんな言葉を使っていても、どのチームを応援していても、サッカーは世界の共通言語。</p><p>50 以上の国で活動する 530 名以上の記者が、サッカー界の動きをすぐそばで追っています。</p><p>気になるリーグやチーム、選手たちの最新情報をオリジナルコンテンツでお届けします。</p><p>5,200 万人以上のサッカーファンに、最新の情報源として信頼されていることには理由があります。</p>"
},
"nl": {
"name": "GOAL.com",
"tagline": "We leven en ademen voetbal - overal, 24/7",
"shortDescription": "",
"description": "<p>Voetbal, soccer, futbol, calcio, futebol - hoe je het ook noemt en welk team je ook support, wij zijn de absolute bron voor voetbal. </p><p>We beschikken over meer dan 530 verslaggevers in meer dan 50 landen die bovenop het nieuws zitten. We creëren originele content en brengen nieuws over competities, teams en spelers die er toe doen.</p><p>Het is dan ook geen wonder dan meer dan 52 miljoen fans in ons vertrouwen.</p>"
}
}
},
"saavn": {
"status": "release",
"manifest": {
"name": "saavn",
"origin": "http://www.saavn.com",
"iconURL": "http://www.saavn.com/_i/firefox/firefox16.png",
"icon32URL": "http://www.saavn.com/_i/firefox/firefox32.png",
"icon64URL": "http://www.saavn.com/_i/firefox/firefox64.png",
"workerURL": "http://www.saavn.com/_s/firefox/worker.js",
"sidebarURL": "http://www.saavn.com/firefox/sidebar.php",
"description": "Saavn is the best Bollywood and Indian music listening experience, online and on the go. It's a simple, beautiful, and 100% free way to search, discover, and listen to over a million songs, from the latest hits to hard-to-find classics.",
"author": "Saavn",
"homepageURL": "http://www.saavn.com",
"version": 1
},
"lang": {
"en-US": {
"name": "saavn",
"tagline": "Music Feed",
"shortDescription": "Discover fresh music and hear more of what you love.",
"description": "Saavn is the best Bollywood and Indian music listening experience, online and on the go. It's a simple, beautiful, and 100% free way to search, discover, and listen to over a million songs, from the latest hits to hard-to-find classics.",
"videos": {
"youtube": ["A8Kignry0p8", "l8VlUiQ2IkQ", "aF0LyLeHk6w"]
},
"links": {
"learnmore": "http://www.saavn.com/corporate/"
}
}
}
},
"pocket": {
"status": "release",
"manifest": {
"name": "Pocket",
"iconURL": "images/pocket/icon16.png",
"icon32URL": "images/pocket/icon32.png",
"icon64URL": "images/pocket/icon64.png",
"workerURL": "https://getpocket.com/firefox/social/worker.js",
"markURL": "https://getpocket.com/firefox/social/cdn/index?url=%{url}&title=%{title}&firefoxsave=1",
"unmarkedIcon": "images/pocket/unmarked.png",
"markedIcon": "images/pocket/marked.png",
"postActivationURL": "https://getpocket.com/installed?firefoxsave=1",
"description": "Pocket service for Firefox - The best way to save articles, videos and more",
"author": "Read It Later Inc.",
"homepageURL": "https://getpocket.com/firefox",
"origin": "https://getpocket.com",
"version": "1.0"
},
"lang": {
"en-US": {
"name": "Pocket",
"tagline": "Save it for later",
"shortDescription": "A convenient, beautiful place to save content you want to view later.",
"links": {
"learnmore": "https://getpocket.com/firefox"
}
},
"ru": {
"name": "Pocket",
"tagline": "Save it for later",
"shortDescription": "A convenient, beautiful place to save content you want to view later.",
"links": {
"learnmore": "https://getpocket.com/firefox"
}
},
"ja": {
"name": "Pocket",
"tagline": "",
"shortDescription": "後で見たいコンテンツを保存しておく便利で美しい場所。",
"description": "Firefoxのためのポケットサービスは、記事、動画などを保存する最良の方法です。",
"links": {
"learnmore": "https://getpocket.com/firefox"
}
},
"zh-TW": {
"name": "Pocket",
"tagline": "先存後用",
"shortDescription": "讓你能儲存任何內容,以利稍後觀看。",
"description": "為 Firefox 打造的 Pocket 服務,是儲存文章、影片,還有更多內容的最佳方案。",
"links": {
"learnmore": "https://getpocket.com/firefox"
}
}
}
},
"sphere": {
"status": "release",
"manifest": {
"name": "Sphere",
"iconURL": "images/sphere/icon16.png",
"icon32URL": "images/sphere/icon32.png",
"icon64URL": "images/sphere/icon64.png",
"sidebarURL": "https://firefox.sphere.com/sidebar.html",
"description": "A new way to discover the most interesting content relevant to your interests.",
"author": "Outbrain",
"homepageURL": "https://www.sphere.com",
"version": "1.0",
"origin": "https://www.sphere.com"
},
"lang": {
"en-US": {
"name": "Sphere",
"tagline": "a discovery experience",
"description": "",
"shortDescription": "A new way to discover the most interesting content relevant to your interests.",
"links": {
"learnmore": "https://www.sphere.com/about/"
}
}
}
},
"delicious": {
"status": "release",
"manifest": {
"name": "Delicious",
"iconURL": "images/delicious/icon16.png",
"icon32URL": "images/delicious/icon32.png",
"icon64URL": "images/delicious/icon64.png",
"sidebarURL": "https://delicious.com/?mozsidebar=1",
"shareURL": "https://delicious.com/save?url=%{url}&title=%{title}¬e=%{text}&source=firefox",
"description": "Delicious is a free service designed with care to be the best place to save what you love on the web.",
"author": "AVOS Systems, Inc.",
"homepageURL": "https://delicious.com",
"version": "1.0.0",
"origin": "https://delicious.com",
"activities": {
"share": {
"href": "https://delicious.com/save?url=%{url}&title=%{title}¬e=%{text}&source=firefox",
"disposition": "inline",
"filters": {
"type": ["*"]
},
"returnValue": false
}
}
},
"lang": {
"en-US": {
"name": "Delicious",
"tagline": "Never lose a link again.",
"shortDescription": "Delicious remembers so you don't have to.",
"links": {
"learnmore": "https://delicious.com/about"
}
},
"ja": {
"name": "Delicious",
"tagline": "",
"shortDescription": "あなたは思い出す必要はありません。Deliciousが思い出します。",
"description": "Deliciousは、ウェブであなたが大好きなものを保存する、最良の場所となるようデザインされたフリーサービスです。",
"links": {
"learnmore": "https://delicious.com/about"
}
},
"zh-TW": {
"name": "Delicious",
"tagline": "再也不錯失任何連結",
"shortDescription": "Delicious 為你記憶更多事。",
"description": "精心打造的 Delicious 免費服務,可為你儲存你愛的網路內容。",
"links": {
"learnmore": "https://delicious.com/about"
}
}
}
},
"facebook": {
"status": "release",
"manifest": {
"origin": "https://www.facebook.com",
"name": "Facebook",
"shareURL": "https://www.facebook.com/sharer/sharer.php?u=%{url}",
"iconURL": "images/facebook/icon16.png",
"icon32URL": "images/facebook/icon32.png",
"icon64URL": "images/facebook/icon64.png",
"description": "Keep up with friends wherever you go on the web.",
"author": "Facebook",
"homepageURL": "https://www.facebook.com",
"version": 2,
"pageSize": {
"share": { "width": 700, "height": 400 }
},
"activities": {
"share": {
"href": "https://www.facebook.com/sharer/sharer.php?u=%{url}",
"disposition": "inline",
"filters": {
"type": ["*"]
},
"returnValue": false
}
}
},
"lang": {
"en-US": {
"name": "Facebook",
"tagline": "Share the web",
"shortDescription": "Share any web page, anywhere, anytime."
},
"ru": {
"name": "Facebook",
"tagline": "Share the web",
"shortDescription": "Share any web page, anywhere, anytime."
},
"ja": {
"name": "Facebook",
"tagline": "",
"shortDescription": "どんなウェブページも、どこでも、いつでもシェア。",
"description": "どこに行っても、ウェブで友達と繋がっていましょう。"
},
"zh-TW": {
"name": "Facebook",
"tagline": "",
"shortDescription": "隨時、隨地分享任何網頁。",
"description": "不論你在網海何處,都能掌握朋友行蹤。"
}
}
},
"cliqz": {
"status": "release",
"manifest": {
"origin": "https://mozsocial.cliqz.com",
"name": "Cliqz",
"description": "Cliqz delivers a real-time stream of the most relevant articles, stories, and videos based on your interests directly to Firefox.",
"author": "Cliqz",
"homepageURL": "https://mozsocial.cliqz.com/",
"version": "2",
"workerURL": "https://mozsocial.cliqz.com/worker?version=2",
"sidebarURL": "https://mozsocial.cliqz.com/sidebar?version=2",
"shareURL": "https://mozsocial.cliqz.com/share-panel?url=%{url}&title=%{title}&version=2",
"iconURL": "images/cliqz/icon16.png",
"icon32URL": "images/cliqz/icon32.png",
"icon64URL": "images/cliqz/icon64.png",
"activities": {
"share": {
"href": "https://mozsocial.cliqz.com/share-panel?url=%{url}&title=%{title}&version=2",
"disposition": "inline",
"filters": {
"type": ["*"]
},
"returnValue": false
}
}
},
"lang": {
"en-US": {
"name": "Cliqz",
"shortDescription": "Get the most relevant news based on your interests by crafting a unique information universe.",
"links": {
"learnmore": "https://mozsocial.cliqz.com/"
}
}
}
},
"mixi": {
"status": "release",
"manifest": {
"version": "1.1",
"name": "mixi",
"author": "mixi, Inc.",
"description": "友人が今何をしているかをいつでも確認できます。また、チェックボタンがないページでも簡単に友人に共有できます",
"origin": "https://mixi.jp",
"sidebarURL": "https://mixi.jp/firefox_sidebar.pl",
"homepageURL": "https://mixi.jp/promotion.pl?id=social_sidebar",
"shareURL": "https://mixi.jp/share.pl?from=social_share&u=%{url}&k=39170634f795be8b2656924b73b9306ccd46d35c",
"workerURL": "https://mixi.jp/static/public/js/sidebar/firefox/worker.js",
"iconURL": "images/mixi/icon16.png",
"icon32URL": "images/mixi/icon32.png",
"icon64URL": "images/mixi/icon64.png"
},
"lang": {
"en-US": {
"name": "mixi",
"tagline": "The largest social network in Japan.",
"shortDescription": "Stay informed of what your friends are up to.",
"description": "",
"links": {
"learnmore": "https://mixi.jp/promotion.pl?id=social_sidebar"
}
},
"jp-JP": {
"name": "mixi",
"tagline": "好きなWebサイトを見ながらmixiをチェック",
"description": "",
"shortDescription": "友人が今何をしているかをいつでも確認できます。また、チェックボタンがないページでも簡単に友人に共有できます 。 ",
"links": {
"learnmore": "https://mixi.jp/promotion.pl?id=social_sidebar"
}
},
"ja": {
"name": "mixi",
"tagline": "好きなWebサイトを見ながらmixiをチェック",
"description": "",
"shortDescription": "友人が今何をしているかをいつでも確認できます。また、チェックボタンがないページでも簡単に友人に共有できます 。 ",
"links": {
"learnmore": "https://mixi.jp/promotion.pl?id=social_sidebar"
}
}
}
},
"weibo": {
"status": "release",
"manifest": {
"author": "SINA Corporation",
"description": "用一句话随意记录生活,用火狐随时随地发微博,迅速获取最热最火最快最酷最新的资讯",
"homepageURL": "http://www.weibo.com",
"iconURL": "images/weibo/icon16.png",
"icon32URL": "images/weibo/icon32.png",
"icon64URL": "images/weibo/icon64.png",
"name": "新浪微博",
"origin": "http://m.weibo.cn",
"sidebarURL": "http://m.weibo.cn/sidebar/",
"version": "0.1",
"workerURL": "http://m.weibo.cn/js/social/worker.js",
"shareURL": "http://service.weibo.com/share/share.php?url=%{url}&title=%{title}&pic=%{previews}",
"pageSize": {
"share": { "width": 620, "height": 500 }
}
},
"lang": {
"en-US": {
"name": "Weibo",
"shortDescription": "Share your interesting news anytime, anywhere.",
"description": "Sina Weibo is the most popular microblogging service in China. Weibo for Firefox allows users to post messages with 140-character limit, images, videos, etc. And it will show the notification when receiving new messages.",
"links": {
"learnmore": "https://www.weibo.com/"
}
}
}
},
"google": {
"status": "release",
"minver": 32,
"manifest": {
"name": "Google+",
"author": "Google",
"iconURL": "images/google/icon16.png",
"icon32URL": "images/google/icon32.png",
"icon64URL": "images/google/icon64.png",
"origin": "https://plus.google.com",
"homepageURL": "https://plus.google.com",
"shareURL": "https://plus.google.com/share?url=%{url}&soc-app=170",
"pageSize": {
"share": { "width": 580, "height": 750 }
},
"description": "Quickly share content you discover across the web on Google+. Use your Google+ account to share sites publicly or with your Circles."
},
"lang": {
"en-US": {
"name": "Google+",
"tagline": "",
"shortDescription": "Share the web on Google+.",
"links": {
"learnmore": "http://www.google.com/+/learnmore/"
}
},
"ja": {
"name": "Google+",
"tagline": "",
"shortDescription": "Google+で友達とウェブをシェア。",
"description": "インターネットで見つけたコンテンツをGoogle+で素早くシェア。見つけたサイトはGoogle+アカウントで仲間とシェアしたり、公開したりできます。",
"links": {
"learnmore": "http://www.google.com/+/learnmore/"
}
},
"zh-TW": {
"name": "Google+",
"tagline": "",
"shortDescription": "在 Google+ 上和朋友分享網路。",
"description": "透過 Google+ 快速分享你發現的內容。用自己的 Google+ 帳戶分享網站到你的社交圈。",
"links": {
"learnmore": "http://www.google.com/+/learnmore/"
}
}
}
},
"gmail": {
"status": "release",
"minver": 32,
"manifest": {
"name": "Gmail",
"author": "Google",
"iconURL": "images/gmail/icon16.png",
"icon32URL": "images/gmail/icon32.png",
"icon64URL": "images/gmail/icon64.png",
"origin": "https://mail.google.com",
"homepageURL": "https://mail.google.com",
"shareURL": "https://mail.google.com/mail/?view=cm&ui=2&tf=0&fs=1&body=%{body}&su=%{title}",
"pageSize": {
"share": { "width": 500, "height": 500 }
},
"description": "Send web pages and images to people using Gmail."
},
"lang": {
"en-US": {
"name": "Gmail",
"shortDescription": "Send web pages and images to people using Gmail.",
"description": "",
"links": {
"learnmore": "https://www.gmail.com/intl/en/mail/help/about.html"
}
},
"ja": {
"name": "Gmail",
"shortDescription": "Gmailを使って、ウェブページや画像をみんなに送れます。",
"description": "",
"links": {
"learnmore": "https://www.gmail.com/intl/en/mail/help/about.html"
}
},
"zh-TW": {
"name": "Gmail",
"shortDescription": "用 Gmail 傳送網頁與圖片給大家。",
"description": "Gmail 是直覺且高效率的電子郵件系統。",
"links": {
"learnmore": "https://www.gmail.com/intl/en/mail/help/about.html"
}
}
}
},
"twitter": {
"status": "release",
"minver": 32,
"manifest": {
"name": "Twitter",
"author": "Twitter, Inc.",
"iconURL": "images/twitter/icon16.png",
"icon32ULR": "images/twitter/icon32.png",
"icon64URL": "images/twitter/icon64.png",
"origin": "https://twitter.com",
"homepageURL": "https://twitter.com",
"shareURL": "https://twitter.com/intent/tweet?url=%{url}&text=%{text}",
"description": "Use your Firefox Twitter Share to quickly author tweets about the pages you discover across the web. We shorten URLs for quick sharing using the t.co link shortener.",
"pageSize": {
"share": { "width": 550, "height": 300 }
}
},
"lang": {
"en-US": {
"name": "",
"tagline": "Tweet to your followers",
"shortDescription": "Twitter Share lets you quickly tweet links to your followers.",
"links": {
"learnmore": "https://about.twitter.com/"
}
},
"ru": {
"name": "",
"tagline": "Пошлите твит вашим читателям.",
"shortDescription": "Twitter Share позволяет быстро слать ссылки вашим последователям.",
"description": "Firefox Twitter Account позволяет быстро редактировать твиты о страницах которые вы найдете в Интернете. Для удобства обмена мы укорачиваем Интернетовские адреса с помощью t.co Link Shortener.",
"links": {
"learnmore": "https://about.twitter.com/"
}
},
"ja": {
"name": "",
"tagline": "",
"shortDescription": "Twitterを使用すると、バリアなくアイディアや情報を瞬時に作成し、共有できるようになります。",
"description": "",
"links": {
"learnmore": "https://about.twitter.com/ja"
}
},
"zh-TW": {
"name": "",
"tagline": "推文給你的追蹤者",
"shortDescription": "Twitter Share 可讓你迅速推文給你的追蹤者。",
"description": "Firefox 的 Twitter Share 功能,能讓你迅速針對自己發現的網頁撰寫推文。我們另透過 t.co 短網址功能,讓你能迅速分享縮短過的網址。",
"links": {
"learnmore": "https://about.twitter.com/zh-hant"
}
}
}
},
"linkedin": {
"status": "release",
"minver": 32,
"manifest": {
"name": "LinkedIn",
"author": "LinkedIn Corporation",
"iconURL": "images/linkedin/icon16.png",
"icon32URL": "images/linkedin/icon32.png",
"icon64URL": "images/linkedin/icon64.png",
"origin": "https://www.linkedin.com",
"shareURL": "https://www.linkedin.com/shareArticle?mini=true&url=%{url}&title=%{title}&trk=FIREFOX_ACTIVATION",
"description": "Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.",
"pageSize": {
"share": { "width": 520, "height": 570 }
}
},
"lang": {
"en-US": {
"name": "LinkedIn",
"shortDescription": "Share the web with your professional network.",
"links": {
"learnmore": "https://www.linkedin.com/about-us"
}
},
"ru": {
"name": "LinkedIn",
"shortDescription": "Share the web with your professional network.",
"links": {
"learnmore": "https://www.linkedin.com/about-us"
}
},
"ja": {
"name": "LinkedIn",
"shortDescription": "仕事で使っているネットワークでウェブをシェア。",
"description": "仕事で使うIDを管理。仕事で使うネットワークを構築し、保証します。知識や深い洞察、そして好機にアクセスしましょう。",
"links": {
"learnmore": "https://www.linkedin.com/about-us"
}
}
}
},
"tumblr": {
"status": "release",
"minver": 32,
"manifest": {
"origin": "https://www.tumblr.com",
"name": "Tumblr",
"author": "Tumblr, Inc.",
"iconURL": "images/tumblr/icon16.png",
"icon32URL": "images/tumblr/icon32.png",
"icon64URL": "images/tumblr/icon64.png",
"shareURL": "https://www.tumblr.com/share?v=3&u=%{url}&t=%{title}&s=%{description}",
"description": "Post text, photos, quotes, links, music, and videos from your browser, phone, desktop, email or wherever you happen to be. You can customize everything, from colors to your theme's HTML.",
"homepageURL": "https://www.tumblr.com",
"version": 1,
"pageSize": {
"share": { "width": 550, "height": 430 }
}
},
"lang": {
"en-US": {
"name": "Tumblr",
"shortDescription": "Tumblr lets you effortlessly share anything.",
"links": {
"learnmore": "https://www.tumblr.com/about"
}
},
"ja": {
"name": "Tumblr",
"shortDescription": "Tumblrを使えば、容易になんでもシェアできます。",
"description": "あなたのブラウザ、電話、デスクトップ、Eメール、どこで何を使っていても、テキストや写真や引用やリンクや音楽や動画を送ることができます。色からテーマのHTMLに至るまで、あなたのTumblrの全てをカスタマイズできます。",
"links": {
"learnmore": "https://www.tumblr.com/about"
}
},
"zh-TW": {
"name": "Tumblr",
"shortDescription": "Tumblr 讓你輕鬆分享大小事。",
"description": "用自己的手機、桌機、瀏覽器、電子郵件,或任何手邊設備,就能張貼文字、照片、引言、連結、音樂、影片。從顏色到自己主題的 HTML,均可自訂任何部分。",
"links": {
"learnmore": "https://www.tumblr.com/about"
}
}
}
},
"vkontakte": {
"status": "release",
"minver": 32,
"manifest": {
"origin": "https://vk.com",
"name": "VK",
"author": "VK",
"iconURL": "images/vkontakte/icon16.png",
"icon32URL": "images/vkontakte/icon32.png",
"icon64URL": "images/vkontakte/icon64.png",
"shareURL": "https://vk.com/share.php?url=%{url}",
"description": "VK is a social network that unites people all over the world and helps them communicate comfortably and promptly.",
"homepageURL": "https://vk.com/about",
"version": 1,
"pageSize": {
"share": { "width": 465, "height": 590 }
}
},
"lang": {
"en-US": {
"name": "VK",
"shortDescription": "VK is a social network that unites people all over the world and helps them communicate comfortably and promptly.",
"description": "",
"links": {
"learnmore": "https://vk.com/about"
}
},
"ru": {
"name": "ВКонтакте",
"shortDescription": "ВКонтакте — это социальная сеть для быстрой и удобной коммуникации между людьми по всему миру.",
"description": "",
"links": {
"learnmore": "https://vk.com/about"
}
}
}
},
"pinterest": {
"status": "beta",
"minver": 32,
"manifest": {
"name": "Pinterest",
"author": "Pinterest",
"iconURL": "images/pinterest/icon16.png",
"icon32URL": "images/pinterest/icon32.png",
"icon64URL": "images/pinterest/icon64.png",
"origin": "https://pinterest.com",
"shareURL": "https://pinterest.com/pin/create/button/?url=%{url}&description=%{title}&media=%{previews}",
"description": "Pinterest is a tool to help you discover and plan things you want to do. When you find something that looks interesting, just Pin it! Pins are visual bookmarks that you organize and share the way you want.",
"homepageURL": "https://pinterest.com",
"pageSize": {
"share": { "width": 755, "height": 420 }
}
},
"lang": {
"en-US": {
"name": "Pinterest",
"shortDescription": "Discover ideas for all your projects and interests, hand-picked by people like you. ",
"description": "Pinterest is a tool to help you discover and plan things you want to do. When you find something that looks interesting, just Pin it! Pins are visual bookmarks that you organize and share the way you want.",
"videos": {
"youtube": ["qyYVI0ySDvk", "2DHxkoXR0RM", "1QkMOdW0Kyc"]
},
"links": {
"learnmore": "http://about.pinterest.com/"
}
},
"ja": {
"name": "Pinterest",
"shortDescription": "あなたに似た人々によって精選されたアイディアを発見しましょう。あなたのあらゆるプロジェクトや興味のあることのために。",
"description": "Pinterestはあなたが発見し、やりたいことを計画するのを助けるツールです。興味深そうなものを見つけたら、Pinで止めるだけです!Pinは、あなた自身のやり方で整理し、シェアするためのビジュアル・ブックマークです。",
"videos": {
"youtube": ["qyYVI0ySDvk", "2DHxkoXR0RM", "1QkMOdW0Kyc"]
},
"links": {
"learnmore": "http://about.pinterest.com/"
}
}
}
},
"stumbleupon": {
"status": "demo",
"minver": 32,
"manifest": {
"origin": "https://www.stumbleupon.com",
"name": "StumbleUpon",
"iconURL": "images/stumbleupon/icon16.png",
"icon32URL": "images/stumbleupon/icon32.png",
"icon64URL": "images/stumbleupon/icon64.png",
"shareURL": "https://www.stumbleupon.com/submit?from=moz-share-service&url=%{url}&title=%{title}&description=%{description}",
"description": "StumbleUpon is the easiest way to find cool new websites, videos, photos and images from across the Web. We make the best recommendations just for you.",
"homepageURL": "https://www.stumbleupon.com",
"version": 1,
"pageSize": {
"share": { "width": 800, "height": 540 }
}
},
"lang": {
"en-US": {
"name": "StumbleUpon",
"shortDescription": "We help you easily discover new and interesting stuff on the Web.",
"description": "StumbleUpon is the easiest way to find cool new websites, videos, photos and images from across the Web. We make the best recommendations just for you.",
"links": {
"learnmore": "http://www.stumbleupon.com/about"
}
}
}
},
"ycombinator": {
"status": "demo",
"minver": 32,
"manifest": {
"origin": "https://news.ycombinator.com/",
"name": "Y Combinator",
"iconURL": "images/ycombinator/icon16.png",
"icon32URL": "images/ycombinator/icon32.png",
"icon64URL": "images/ycombinator/icon64.png",
"shareURL": "https://news.ycombinator.com/submitlink?u=%{url}&t=%{title}",
"description": "Hacker News: technology and business news from Y Combinator.",
"homepageURL": "https://news.ycombinator.com/",
"version": 1,
"pageSize": {
"share": { "width": 500, "height": 280 }
}
},
"lang": {
"en-US": {
"name": "Y Combinator",
"shortDescription": "Hacker News: technology and business news from Y Combinator.",
"description": "",
"links": {
"learnmore": "http://ycombinator.com/about.html"
}
}
}
},
"reddit": {
"status": "demo",
"minver": 32,
"manifest": {
"origin": "http://www.reddit.com",
"name": "reddit",
"iconURL": "images/reddit/icon16.png",
"icon32URL": "images/reddit/icon32.png",
"icon64URL": "images/reddit/icon64.png",
"shareURL": "http://www.reddit.com/submit?url=%{url}&title=%{title}&description=%{description}",
"description": "we power awesome communities.",
"homepageURL": "http://www.reddit.com",
"version": 1,
"pageSize": {
"share": { "width": 800, "height": 540 }
}
},
"lang": {
"en-US": {
"name": "reddit",
"shortDescription": "we power awesome communities.",
"description": "reddit is an entertainment, social networking service and news website where registered community members can submit content, such as text posts or direct links.",
"links": {
"learnmore": "http://www.reddit.com/about"
}
}
}
},
"digg": {
"status": "demo",
"minver": 32,
"manifest": {
"name": "Digg",
"origin": "http://digg.com",
"shareURL": "http://digg.com/submit?url=%{url}&title=%{title}",
"iconURL": "http://digg.com/favicon.ico",
"icon64URL": "images/digg/icon64.png",
"description": "Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis. "
},
"lang": {
"en-US": {
"name": "Digg",
"shortDescription": "a design mockup showing what this service could look like."
}
}
},
"soundcloud": {
"status": "demo",
"manifest": {
"name": "Soundcloud",
"iconURL": "http://soundcloud.com/favicon.ico",
"icon64URL": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEIAAABCCAIAAABsNpe/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0QUYwOTFEQzM3MjA2ODExODA4M0NFNkVDMjIxNUJBQyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2QjBFQTlEQTlFQzUxMUUyQjdCMEY4QUM3QzYzMjA0QyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2QjA3MEJEQTlFQzUxMUUyQjdCMEY4QUM3QzYzMjA0QyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RjAyRjcwMEEyNzIwNjgxMTgwODNFODYzNzgwNTM4MEMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NEFGMDkxREMzNzIwNjgxMTgwODNDRTZFQzIyMTVCQUMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz719pF8AAAEsUlEQVR42uxbXWwUVRT+Zn+62539tSzblRahaEpbwk/BSNKE+IA2CpYYI7ESYgKJD/rSmKgJiTwQicYHw0MTX4wmBhN/Ai9KYjQx+iAPGmlFxFLaIv2hQouFUunSlh3POTPurmVKutPZGpp7s5l8vXP37vnu951z7+ymmnEkgXu/+TA5tgRoeLAkmg+GoqFoKBqKhqKhaCga9yiNrFJD0VCmUqZSplpKagQiePgF1D2J9HroFcjexvgwRnvQ+x06PsHYxQVOrxltpedQvwOtHyKctL9LlDo/xZcHFkLGw2qU4gUNjXssvO/4nBw4BC8an8frv2JTq+OP83BulOKV3oi9R/lK2Fs2L9ft/Rjb2px9XMnUiFdzcJX1ReSepuHpd7Fp9/+hhjeIl7/m66x+XVyUWFVcJSQmre8jVr0oamg+NB9g9xOuWIO1j6GygXEwhoNdCEQZx+7nsOJVRVfCYAQtby2KGjVNaDmMVEN+1UMVkg/rkapF9WbGoWXcT5ntYF/a8lyxgjhSI5LiD4umGYfuk3CXizKrGS+vZUybA+Sug32Jatfm3aVXw1xpIpMVHajpyxgnVjJOPsi4PGY5xNkpYe32ItW4y21/GPuPUhYzDqdw6Cx8IcEFhjE3BItGlahUKTTiUkbDDmnUb0f7BN7L4GAnWg7xwjk31aot2LqH7U64ZivSdajaUGCkpGD5XSEUZ2xSiojBTDXKdIeHHY8PAR2+AKo34Kk38HYvGp8p0lRrmrD6EQaRSqvaZCUTcthcaV3S2qRBPTzepJHMmwpw5+hZHsVLnzOTItR44lU0vyJF0wx9RR4npICGhAYRmIVJB6Ynae31yT7gce3oSVvK/g8sqeelRmKF5W+z2pg5YK40kckpoCcK1IiKAtF8WpOdFpLic2nyeNu8U5wyOCIpZa50NFVAqaDfTF8rByT1g2E5+5f9J3R3n2c27rSlYfe8EYqxJThlJfSApKlekMpl5fl+f5Cx1y+7eCTfb1ICXH6eSdfaTmj39Efaebz5VTeNoUt1IgKEqYBQ8wvOhT5LAZqBp4q4rMbMlO2EdjToOUYTs2leazmzYhWzDmYl28y9NvdezWtvJJrKXRqX+2wntKtUo/248geDCfmR9tZNxjevM57KML4+wjgzwXg6w3hynDFdISMNuZsb42I7dcK2Utmp0f8bpia5f3yU/6SgCV+7wph6CN+4ypiu2X+pTt+yMBmSqBLO/M3pce2ym2rQMn1xZA5T3blaH72G2zPcPzYsOl5g/NclxnQlTMHl8NUhPEQCDjIe6UfyARaTxw8hnmIPuKWGYaB9n7WaNqa6s34NdmNYLHiph4f0/cJ4ZICx2U/hQu4SHpYxf/bK+G7Gg12CzzPu7WBMi7JQHW7gnWfxwzFHZ6qTx3F4F87/xHjoHE838LtgCbf/LOOBLsY9pxhfOM24+0fGfR2Mz3zP+EQ7DEfeImfSPJ+9iRdrcPLYXULVjJ3zPgusbMDFM+JEP9Y9itPfciHyB9DYjJ+/4lJI1WzdNg59ZhpBHXVN6PyGzVD6phk71Jef6qtopYb6fUOZSqmhTKXUUDQUDUVD0VA0FA1FYxHbEvnHh38EGAA0eV7Yr/i+2wAAAABJRU5ErkJggg==",
"sidebarURL": "http://m.soundcloud.com/dashboard",
"origin": "http://m.soundcloud.com/dashboard",
"description": "Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis. "
},
"lang": {
"en-US": {
"name": "Soundcloud",
"shortDescription": "a design mockup showing what this service could look like."
}
}
},
"odnoklassniki": {
"status": "release",
"minver": 32,
"manifest": {
"origin": "http://www.odnoklassniki.ru/",
"name": "Odnoklassniki",
"shareURL": "http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.noresize=on&st._surl=%{url}",
"iconURL": "images/odnoklassniki/icon16.png",
"icon32URL": "images/odnoklassniki/icon32.png",
"icon64URL": "images/odnoklassniki/icon64.png",
"description": "Odnoklassniki (Russian: Одноклассники Classmates) is a social network service for classmates and old friends.",
"author": "Odnoklassniki",
"homepageURL": "http://www.odnoklassniki.ru/",
"pageSize": {
"share": { "width": 650, "height": 380 }
}
},
"lang": {
"en-US": {
"name": "Odnoklassniki",
"shortDescription": "Odnoklassniki (Russian: Одноклассники Classmates) is a social network service for classmates and old friends.",
"description": ""
},
"ru": {
"name": "Одноклассники",
"shortDescription": "Развлекательная социальная сеть для общения с друзьями, просмотра фильмов и сериалов, прослушивания музыки и многого другого.",
"description": ""
}
}
},
"xing": {
"status": "release",
"manifest": {
"origin": "https://www.xing.com",
"name": "XING",
"iconURL": "images/xing/icon16.png",
"icon32URL": "images/xing/icon32.png",
"icon64URL": "images/xing/icon64.png",
"shareURL": "https://www.xing.com/social_plugins/share/new?sc_p=xing-share&h=1&url=%{url}",
"description": "Xing is the social network for professional networking, business marketing and career development.",
"author": "XING",
"homepageURL": "https:/www.xing.com",
"version": 1
},
"lang": {
"en-US": {
"name": "XING",
"shortDescription": "XING is the professional network for a better working life.",
"description": "Expand your existing network and access new contacts, groups, jobs, companies, events and news from your industry."
},
"de": {
"name": "XING",
"shortDescription": "XING ist das soziale Netzwerk für Beruf und Karriere.",
"description": "Entdecken Sie neue und bestehende Kontakte, Gruppen, Jobs, Unternehmen, Events und News aus Ihrer Branche."
}
}
},
"yammer": {
"status": "demo",
"manifest": {
"origin": "https://www.yammer.com",
"name": "Yammer",
"iconURL": "images/yammer/icon16.png",
"icon32URL": "images/yammer/icon32.png",
"icon64URL": "images/yammer/icon64.png",
"shareURL": "https://www.yammer.com/home/bookmarklet?t=%{title}&u=%{url}",
"description": "Yammer.",
"author": "Yammer",
"homepageURL": "https://about.yammer.com/who-we-are/",
"version": 1
},
"lang": {
"en-US": {
"name": "Yammer"
}
}
},
"demo": {
"status": "demo",
"manifest": {
"origin": "https://socialapi-demo.paas.allizom.org",
"name": "Demo Social Service",
"iconURL": "https://socialapi-demo.paas.allizom.org/firefox16.png",
"icon32URL": "https://socialapi-demo.paas.allizom.org/firefox32.png",
"icon64URL": "images/demo/icon64.png",
"workerURL": "https://socialapi-demo.paas.allizom.org/worker.js",
"sidebarURL": "https://socialapi-demo.paas.allizom.org/sidebar.htm?l=__T_LOCALE__",
"statusURL": "https://socialapi-demo.paas.allizom.org/statusPanel.html",
"shareURL": "https://socialapi-demo.paas.allizom.org/share.html?url=%{url}",
"markURL": "https://socialapi-demo.paas.allizom.org/mark.html?url=%{url}",
"markedIcon": "https://socialapi-demo.paas.allizom.org/checked32.png",
"unmarkedIcon": "https://socialapi-demo.paas.allizom.org/unchecked32.png",
"description": "This is a small demonstration SocialAPI provider used primarily for manual testing and to illustrate some API usage.",
"author": "Shane Caraveo, Mozilla",
"homepageURL": "https://github.com/mixedpuppy/socialapi-demo/",
"version": 1
},
"lang": {
"en-US": {
"name": "Demo Social Service",
"shortDescription": "a demo service used for manual testing and as a code example for developers."
}
}
}
},
"data": [],
"firefox-releases": {
"2014-06-10": [30,31,32,33],
"2014-07-22": [31,32,33,34],
"2014-09-02": [32,33,34,35],
"2014-10-14": [33,34,35,36],
"2014-11-25": [34,35,36,37],
"2015-01-06": [35,36,37,38],
"2015-02-17": [36,37,38,39],
"2015-03-31": [37,38,39,40]
},
"sharePanel": {
"en-US": ["delicious", "facebook", "google", "linkedin", "tumblr", "twitter"],
"jp-JP": ["mixi", "twitter", "google", "facebook", "tumblr", "gmail"],
"ja": ["mixi", "twitter", "google", "facebook", "tumblr", "gmail"],
"zh-TW": ["twitter", "google", "facebook", "tumblr", "gmail"],
"ru": ["odnoklassniki", "vkontakte", "twitter", "google", "facebook", "tumblr"],
"de": ["xing", "cliqz", "facebook", "twitter", "google", "tumblr"]
},
"carousel": {
"en-US": ["facebook", "yahoo", "twitter"],
"en-IN": ["saavn", "pocket", "facebook"],
"jp-JP": ["mixi", "twitter", "tumblr"],
"zh-TW": ["twitter", "google", "tumblr"],
"ja": ["mixi", "twitter", "tumblr"],
"ru": ["odnoklassniki", "vkontakte", "twitter"],
"de": ["xing", "twitter", "cliqz"]
}
}