-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathall.json
1152 lines (1152 loc) · 48 KB
/
all.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
998
999
1000
{
"schemaVersion": "1.0.0",
"plugins": [
{
"name": "App Center Analytics",
"identifier": "app.here.appcenteranalytics",
"description": "Show analytics from Visual Studio App Center",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/App-Center-Analytics",
"labels": ["productivity", "analytics"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/App-Center-Analytics.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "App Store Ranking",
"identifier": "app.here.appstoreranking",
"description": "Show apps rank list of App Store",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/App-Store-Ranking",
"labels": ["ranking", "trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/App-Store-Ranking.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Apple Coverage Checker",
"identifier": "app.here.applecoveragechecker",
"description": "Check the Status of AppleCare on your Apple Devices",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Apple-Coverage-Checker",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Apple-Coverage-Checker.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Apple Developer Releases",
"identifier": "app.here.appledeveloperreleases",
"description": "Show Apple developer releases",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Apple-Developer-Releases",
"labels": ["news"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Apple-Developer-Releases.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Battery",
"identifier": "app.here.battery",
"description": "Show battery info",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Battery",
"labels": ["system", "status"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Battery.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "BBC News",
"identifier": "app.here.bbcnews",
"description": "Show BBC hot news",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/BBC-News",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/BBC-News.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Bilibili排行榜",
"identifier": "app.here.bilibiliranking",
"description": "显示 Bilibili 排行榜",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Bilibili-Ranking",
"labels": ["ranking", "trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Bilibili-Ranking.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "bilibili新番时间表",
"identifier": "app.here.bilibilitimeline",
"description": "显示 bilibili 新番剧目播放时间",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Bilibili-Timeline",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Bilibili-Timeline.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Bookmark",
"identifier": "app.here.bookmark",
"description": "Bookmark your favorite website",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Bookmark",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Bookmark.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "BTC Price",
"identifier": "app.here.btcprice",
"description": "Show real-time price of BTC and other cryptocurrencies",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/BTC-Price",
"labels": ["status", "tracker"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/BTC-Price.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "CCTV",
"identifier": "com.myluoluo.cctv",
"description": "显示 CCTV 频道节目单",
"createdBy": "myluoluo",
"website": "https://github.com/myluoluo",
"repository": "https://github.com/hereappdev/Here-Third-Party-Plugins/tree/master/source/CCTV",
"labels": ["trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Third-Party-Plugins/master/downloads/CCTV.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "cnBeta",
"identifier": "app.here.cnbeta",
"description": "显示 cnBeta 实时热文",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/cnBeta",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/cnBeta.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "CNN News",
"identifier": "app.here.cnnnews",
"description": "Show CNN hot news",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/CNN-News",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/CNN-News.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "CPU",
"identifier": "app.here.cpu",
"description": "Show system CPU usage",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/CPU",
"labels": ["system", "status"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/CPU.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Currency Exchange",
"identifier": "app.here.currencyexchange",
"description": "Show exchange rate conversion",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Currency-Exchange",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Currency-Exchange.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Dark Mode Switch",
"identifier": "app.here.darkmodeswitch",
"description": "Switch between light and dark mode",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Dark-Mode-Switch",
"labels": ["others", "development"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Dark-Mode-Switch.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Debug Info",
"identifier": "app.here.debug",
"description": "Show developing info",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Debug",
"labels": ["others", "development"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Debug.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Dock Spacer",
"identifier": "app.here.dockspacer",
"description": "Add custom spacers to your Dock",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Dock-Spacer",
"labels": ["tool"],
"releases": [
{
"tags": false,
"download": "https://github.com/hereappdev/Here-Official-Plugins/raw/master/downloads/Dock-Spacer.hereplugin",
"hereVersion": "1.0.7"
}
]
},
{
"name": "Empty Trash",
"identifier": "app.here.emptytrash",
"description": "Quick empty trash",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Empty-Trash",
"labels": ["system"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Empty-Trash.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Game 2048",
"identifier": "app.here.game2048",
"description": "Get to the 2048 Tile!",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Game-Chrome-Dino",
"labels": ["games", "others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Game-Chrome-Dino.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Game Chrome Dino",
"identifier": "app.here.gamechromedino",
"description": "Chrome Dino (also known as T-Rex Game, or the NO INTERNET GAME)",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Game-2048",
"labels": ["games", "others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Game-2048.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Github Trending",
"identifier": "app.here.githubtrending",
"description": "Show what the GitHub is most excited about today",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Github-Trending",
"labels": ["ranking", "trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Github-Trending.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Google Trends",
"identifier": "app.here.googletrends",
"description": "Show what's trending on Google",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Google-Trends",
"labels": ["ranking", "trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Google-Trends.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Hacker News",
"identifier": "app.here.hackernews",
"description": "Show Hacker News hot posts",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Hacker-News",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Hacker-News.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Hello GitHub",
"identifier": "app.here.hellogithub",
"description": "Show Hello GitHub post feeds",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Hello-Github",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Hello-Github.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Here Resources",
"identifier": "app.here.hereresources",
"description": "Everything about Here",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Here-Resources",
"labels": ["others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Here-Resources.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Here Test",
"identifier": "app.here.heretest",
"description": "Here App API Unit Test",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Here-Test",
"labels": ["others", "development"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Here-Test.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Horrible Subs",
"identifier": "app.here.ostrichb.hsubmtor",
"description": "So bad yet so good~",
"createdBy": "ostrichb",
"website": "https://github.com/Ostrichbeta",
"repository": "https://github.com/hereappdev/Here-Third-Party-Plugins/tree/master/source/Horrible-Subs",
"labels": ["others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Third-Party-Plugins/master/downloads/Horrible-Subs.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "IP Checker",
"identifier": "app.here.ipchecker",
"description": "Check IP address info",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/IP-Checker",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/IP-Checker.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Mac玩儿法",
"identifier": "app.here.waerfa",
"description": "显示Mac玩儿法最新文章",
"createdBy": "Waerfa",
"website": "https://www.waerfa.com",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Waerfa",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Waerfa.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Memory",
"identifier": "app.here.memory",
"description": "Show system memory usage",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Memory",
"labels": ["system", "status"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Memory.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Meta News",
"identifier": "foh.meta-news",
"description": "A plugin to generate news plugin",
"createdBy": "Lifesign",
"website": "https://github.com/FriendsOfHere",
"repository": "https://github.com/FriendsOfHere/meta-news",
"labels": ["news", "tools"],
"releases": [
{
"tags": true,
"hereVersion": "*"
}
]
},
{
"name": "Minecraft Server Check",
"identifier": "app.here.ostrichb.mcservercheck",
"description": "Measure the status of Minecraft server",
"createdBy": "ostrichb",
"website": "https://github.com/Ostrichbeta",
"repository": "https://github.com/hereappdev/Here-Third-Party-Plugins/tree/master/source/Minecraft-Server-Check",
"labels": ["tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Third-Party-Plugins/master/downloads/Minecraft-Server-Check.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Net Stat",
"identifier": "app.here.netstat",
"description": "Download/Upload network speed monitor",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Netstat",
"labels": ["system", "status"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Netstat.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "New File",
"identifier": "app.here.newfile",
"description": "Create a new, blank text file",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/New-File",
"labels": ["system"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/New-File.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "NPR News",
"identifier": "app.here.nprnews",
"description": "Show NPR News hot news",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/NPR-News",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/NPR-News.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Nyan Cat",
"identifier": "app.here.nyancat",
"description": "🐱Nyan Cat everywhere",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Nyan-Cat",
"labels": ["game", "other"],
"releases": [
{
"tags": false,
"download": "https://github.com/hereappdev/Here-Official-Plugins/raw/master/downloads/Nyan-Cat.hereplugin",
"hereVersion": "1.0.1"
}
]
},
{
"name": "New York Times",
"identifier": "app.here.nytimesnews",
"description": "Show New York Timeshot news",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/NYTimes-News",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/NYTimes-News.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Product Hunt",
"identifier": "app.here.producthunt",
"description": "Show Product Hunt hot posts",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Product-Hunt",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Product-Hunt.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Progress of the Year",
"identifier": "app.here.progress",
"description": "Progress of the Year",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Progress",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Progress.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Pure Switch",
"identifier": "foh.pure-switch",
"description": "A powerful here plugin for toggle switches in one place.",
"createdBy": "Lifesign",
"website": "https://github.com/FriendsOfHere",
"repository": "https://github.com/FriendsOfHere/pure-switch",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": true,
"hereVersion": "*"
}
]
},
{
"name": "RSSHub Reader",
"identifier": "app.here.rsshubreader",
"description": "Show rss feeds from RSSHub APIs",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/RSSHub-Reader",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/RSSHub-Reader.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "ScreenSaver",
"identifier": "app.here.screensaver",
"description": "Turn on screenSaver",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Screensaver",
"labels": ["system"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Screensaver.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Sleep Display",
"identifier": "app.here.sleepdisplay",
"description": "Put display to sleep or wake it up.",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Sleep-Display",
"labels": ["system"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Sleep-Display.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Spaceship",
"identifier": "foh.spaceship",
"description": "A simple shortcut Here plugin. inspired by shuttle",
"createdBy": "Lifesign",
"website": "https://github.com/FriendsOfHere",
"repository": "https://github.com/FriendsOfHere/spaceship",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": true,
"hereVersion": "*"
}
]
},
{
"name": "Stocks",
"identifier": "app.here.stocks",
"description": "Show stocks everywhere.",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Stocks",
"labels": ["trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Stocks.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Subscriptions",
"identifier": "app.here.subscriptions",
"createdBy": "Here",
"website": "https://here.app",
"description": "Show and calculation on all your subscription services",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Subscriptions",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Subscriptions.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Simple Switch",
"identifier": "app.here.switch",
"createdBy": "Here",
"website": "https://here.app",
"description": "All in one simple switch",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Switch",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Switch.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Sweet Cal",
"identifier": "foh.sweet-cal",
"description": "A tiny sweet calendar Here plugin",
"createdBy": "Lifesign",
"website": "https://github.com/FriendsOfHere",
"repository": "https://github.com/FriendsOfHere/sweet-cal",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": true,
"hereVersion": "*"
}
]
},
{
"name": "Techmeme News",
"identifier": "app.here.techmemenews",
"description": "Show Techmeme News hot news",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Techmeme-News",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Techmeme-News.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "TheTop热门聚合",
"identifier": "app.here.thetop",
"description": "显示TheTop热门聚合",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/TheTop",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/TheTop.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "ToDoMVC",
"identifier": "app.here.todomvc",
"description": "A ToDo webapp",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/ToDoMVC",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/ToDoMVC.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "V2EX",
"identifier": "app.here.v2ex",
"description": "Quick view V2EX.com",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/V2EX",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/V2EX.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Weather",
"identifier": "app.here.weather",
"description": "Show world weather",
"createdBy": "Here",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Weather",
"labels": ["trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Weather.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "Yandex Translator",
"identifier": "app.here.ostrichb.yandextranslator",
"description": "Translate your texts from your pasteboard",
"createdBy": "ostrichb",
"website": "https://github.com/Ostrichbeta",
"repository": "https://github.com/hereappdev/Here-Third-Party-Plugins/tree/master/source/Yandex-Translator",
"labels": ["productivity", "tools"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Third-Party-Plugins/master/downloads/Yandex-Translator.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "豆瓣电影(热映榜)",
"identifier": "app.here.doubanmovie",
"description": "显示豆瓣近期热映电影",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/DouBan-Movie",
"labels": ["ranking", "trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/DouBan-Movie.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "黄历(万年历)",
"identifier": "app.here.huangli",
"description": "显示黄历(万年历)",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/HuangLi",
"labels": ["tool"],
"releases": [
{
"tags": false,
"download": "https://github.com/hereappdev/Here-Official-Plugins/raw/master/downloads/HuangLi.hereplugin",
"hereVersion": "1.0.3"
}
]
},
{
"name": "掘金开发者头条",
"identifier": "app.here.juejin",
"description": "显示掘金热门文章",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/JueJin",
"labels": ["news", "feeds"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/JueJin.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "每日诗词",
"identifier": "app.here.dailypoetry",
"description": "给生活增添一分诗意",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Daily-Poetry",
"labels": ["others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Daily-Poetry.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "每日一句英文",
"identifier": "app.here.dailysentence",
"description": "英文语句,点滴积累",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Daily-Sentence",
"labels": ["others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Daily-Sentence.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "农历(万年历)",
"identifier": "app.here.nongli",
"description": "农历(万年历)",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/NongLi",
"labels": ["others"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/NongLi.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "人民币汇率",
"identifier": "app.here.exchangerate",
"description": "显示人民币兑其他货币汇率(中国人民银行)",
"createdBy": "HereCN",
"website": "https://here.app",
"repository": "https://github.com/hereappdev/Here-Official-Plugins/tree/master/source/Exchange-Rate",
"labels": ["trends"],
"releases": [
{
"tags": false,
"download": "https://raw.githubusercontent.com/hereappdev/Here-Official-Plugins/master/downloads/Exchange-Rate.hereplugin",
"hereVersion": "*"
}
]
},
{
"name": "基金助手",
"identifier": "app.cyberfei.fundsassistant",
"description": "时刻关注你的基金!",
"createdBy": "CyberFei",
"website": "https://chrome.google.com/webstore/detail/%E5%9F%BA%E9%87%91%E5%8A%A9%E6%89%8B/jikclepdllhnflmfbchiepgkhcdkddgb",
"repository": "https://github.com/hereappdev/Here-Third-Party-Plugins/tree/master/source/Funds-Assistant",
"labels": ["trends", "ranking"],
"releases": [