-
Notifications
You must be signed in to change notification settings - Fork 387
/
graveyard.json
2370 lines (2370 loc) · 102 KB
/
graveyard.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
[
{
"name": "Chromecast",
"dateOpen": "2013-07-24",
"dateClose": "2024-08-06",
"link": "https://www.theverge.com/2024/8/6/24214471/google-chromecast-line-discontinued",
"description": "Chromecast was a line of digital media players that allowed users to play online content on a television.",
"type": "hardware"
},
{
"name": "VPN by Google One",
"dateClose": "2024-06-20",
"dateOpen": "2020-10-29",
"description": "VPN by Google One was a virtual private network service that provided users encrypted transit of their data and network activity and allowed them to mask their IP address.",
"link": "https://9to5google.com/2024/04/11/google-one-vpn-discontinued/",
"type": "service"
},
{
"dateClose": "2023-06-26",
"dateOpen": "2017-11-29",
"description": "YouTube Stories (originally YouTube Reels) allowed creators to post temporary videos that would expire after seven days.",
"link": "https://www.theverge.com/2023/5/25/23736246/youtube-ending-stories-shorts-community-posts",
"name": "YouTube Stories",
"type": "service"
},
{
"dateClose": "2023-07-19",
"dateOpen": "2016-08-05",
"description": "Google Album Archive was a platform that allowed users to access and manage their archived photos and videos from various Google services, such as Hangouts and Picasa Web Albums.",
"link": "https://cordcuttersnews.com/google-is-shutting-down-album-archive/",
"name": "Google Album Archive",
"type": "service"
},
{
"dateClose": "2023-09-30",
"dateOpen": "2014-06-13",
"description": "Google Domains was a domain name registrar operated by Google.",
"link": "https://9to5google.com/2023/06/15/google-domains-squarespace/",
"name": "Google Domains",
"type": "service"
},
{
"dateClose": "2023-03-17",
"dateOpen": "2014-01-01",
"description": "Jacquard was a small tag to make it easier and more intuitive for people to interact with technology in their everyday lives, without having to constantly pull out their devices or touch screens.",
"link": "https://www.androidpolice.com/google-project-jacquard-shutting-down/",
"name": "Jacquard",
"type": "hardware"
},
{
"dateClose": "2022-11-01",
"dateOpen": "2012-03-29",
"description": "Google Surveys was a business product by Google aimed at facilitating customized market research.",
"link": "https://www.searchenginejournal.com/google-surveys-is-shutting-down/465287/",
"name": "Google Surveys",
"type": "service"
},
{
"dateClose": "2023-02-23",
"dateOpen": "2003-10-01",
"description": "Google Code Jam, Kick Start, and Hash Code were competitive programming competitions open to programmers around the world.",
"link": "https://en.wikipedia.org/wiki/Google_Code_Jam",
"name": "Google Code Competitions",
"type": "service"
},
{
"dateClose": "2023-01-18",
"dateOpen": "2019-11-19",
"description": "Google Stadia was a cloud gaming service combining a WiFi gaming controller and allowed users to stream gameplay through web browsers, TV, mobile apps, and Chromecast.",
"link": "https://www.theverge.com/2022/9/29/23378713/google-stadia-shutting-down-game-streaming-january-2023/",
"name": "Google Stadia",
"type": "service"
},
{
"dateClose": "2022-06-01",
"dateOpen": "2016-08-16",
"description": "Google Duo was a video calling app that allowed people to call someone from their contact list.",
"link": "https://en.wikipedia.org/wiki/Google_Duo",
"name": "Google Duo",
"type": "service"
},
{
"dateClose": "2022-06-21",
"dateOpen": "2019-11-04",
"description": "Android Auto for phone screens was an app that allowed the screen of the phone to be used as an Android Auto interface while driving, intended for vehicles that did not have a compatible screen built in.",
"link": "https://www.androidpolice.com/google-kills-android-auto-for-phone-screens/",
"name": "Android Auto for phone screens",
"type": "app"
},
{
"dateClose": "2022-07-31",
"dateOpen": "2018-11-18",
"description": "Google My Business was an app that allowed businesses to manage their Google Maps Business profiles.",
"link": "https://rizenmetrics.com/news-google-my-business-app-will-be-replaced/",
"name": "Google My Business (app)",
"type": "app"
},
{
"dateClose": "2022-02-17",
"dateOpen": "2018-08-19",
"description": "Cameos on Google allowed celebrities and other public figures to record video responses to the most common questions asked about them which would be shown to users in Google Search results.",
"link": "https://techcrunch.com/2018/08/09/google-launches-cameos-a-video-qa-app-aimed-at-celebs/",
"name": "Cameos on Google",
"type": "service"
},
{
"dateClose": "2022-08-09",
"dateOpen": "2017-02-15",
"description": "YouTube Go was an app aimed at making YouTube easier to access on mobile devices in emerging markets through special features like downloading video on wifi for viewing later.",
"link": "https://9to5google.com/2022/05/03/youtube-go-shutting-down/",
"name": "YouTube Go",
"type": "app"
},
{
"dateClose": "2020-04-23",
"dateOpen": "2014-11-20",
"description": "Google Contributor was a program run by Google that allowed users in the Google Network of content sites to view the websites without any advertisements that are administered, sorted, and maintained by Google.",
"link": "https://en.wikipedia.org/wiki/Google_Contributor",
"name": "Google Contributor",
"type": "service"
},
{
"dateClose": "2016-02-21",
"dateOpen": "2012-06-21",
"description": "Google Maps Coordinate was a service for managing mobile workforces with the help of mobile apps and a web-based dashboard.",
"link": "https://techcrunch.com/2015/01/21/google-shuts-down-maps-coordinate-its-mobile-workforce-management-service/",
"name": "Google Maps Coordinate",
"type": "service"
},
{
"dateClose": "2021-07-30",
"dateOpen": "2013-07-01",
"description": "Fitbit Coach (formerly Fitstar) was a video-based bodyweight workout app that used AI to personalize workouts based on user feedback.",
"link": "https://help.fitbit.com/articles/en_US/Help_article/2279.htm",
"name": "Fitbit Coach",
"type": "app"
},
{
"dateClose": "2021-07-30",
"dateOpen": "2014-09-01",
"description": "Fitstar Yoga was a video-based yoga app that created unique yoga sessions based on user preference and skill level.",
"link": "https://help.fitbit.com/articles/en_US/Help_article/2279.htm#FitStarY",
"name": "Fitstar Yoga",
"type": "app"
},
{
"dateClose": "2023-01-11",
"dateOpen": "2015-08-31",
"description": "Google OnHub was a series of residential wireless routers manufactured by Asus and TP-Link that were powered by Google software, managed by Google apps, and offered enhanced special features like Google Assistant.",
"link": "https://en.wikipedia.org/wiki/Google_OnHub",
"name": "Google OnHub",
"type": "hardware"
},
{
"dateClose": "2021-09-27",
"dateOpen": "2017-11-01",
"description": "Analytics platform for Google's Dialogflow chatbot & others, started by the Google-funded Area120 incubator then retired and partially merged into Dialogflow itself.",
"link": "https://web.archive.org/web/20210701153646/https://chatbase.com/documentation/docs-overview",
"name": "Chatbase",
"type": "service"
},
{
"dateClose": "2024-04-08",
"dateOpen": "2009-01-15",
"description": "Dropcam was a line of Wi-Fi video streaming cameras acquired by Google in 2014.",
"link": "https://en.wikipedia.org/wiki/Dropcam",
"name": "DropCam",
"type": "hardware"
},
{
"dateClose": "2021-12-11",
"dateOpen": "2000-12-11",
"description": "Google Toolbar was a web browser toolbar that provided a search box in web browsers like Internet Explorer and Firefox.",
"link": "https://en.wikipedia.org/wiki/Google_Toolbar",
"name": "Google Toolbar",
"type": "service"
},
{
"dateClose": "2021-10-15",
"dateOpen": "2014-10-31",
"description": "My Maps was an Android application that enabled users to create custom maps for personal use or sharing on their mobile device.",
"link": "https://9to5google.com/2021/07/20/google-my-maps-android-shutdown/",
"name": "Google My Maps",
"type": "app"
},
{
"dateClose": "2021-06-01",
"dateOpen": "2014-08-26",
"description": "Zync render was a cloud render platform for animation and visual effects.",
"link": "https://www.reddit.com/r/vfx/comments/gur4lc/zync_render_will_shut_down_june_1_2021/",
"name": "Zync Render",
"type": "service"
},
{
"dateClose": "2012-07-01",
"dateOpen": "2009-11-05",
"description": "Google Commerce Search was an enterprise search service that powered online retail stores and e-commerce websites that improved speed and accuracy.",
"link": "https://techcrunch.com/2012/07/03/google-shutdowns-continue-igoogle-google-video-google-mini-others-are-killed/",
"name": "Google Commerce Search",
"type": "service"
},
{
"dateClose": "2021-04-09",
"dateOpen": "2019-05-14",
"description": "The Google Shopping Mobile App, which had absorbed Google Express when it launched, provided a native shopping experience with a personalized homepage for mobile users. It is now retired and the functionality lives on in the Shopping Tab.",
"link": "https://9to5google.com/2021/04/09/google-shopping-app/",
"name": "Google Shopping Mobile App",
"type": "app"
},
{
"dateClose": "2021-06-15",
"dateOpen": "2011-05-10",
"description": "Google Play Movies & TV, originally Google TV, was an app used to view purchased and rented media and was ultimately replaced with YouTube.",
"link": "https://en.wikipedia.org/wiki/Google_TV_(service)",
"name": "Google Play Movies & TV",
"type": "app"
},
{
"dateClose": "2021-04-01",
"dateOpen": "2012-10-30",
"description": "Google Public Alerts was an online notification service owned by Google.org that sends safety alerts to various countries.",
"link": "https://en.wikipedia.org/wiki/Google_Public_Alerts",
"name": "Google Public Alerts",
"type": "service"
},
{
"dateClose": "2021-03-31",
"dateOpen": "2010-01-01",
"description": "(also known as Google Short Links) was a URL shortening service. It also supported custom domain for customers of Google Workspace (formerly G Suite (formerly Google Apps)).",
"link": "https://github.com/codyogden/killedbygoogle/issues/865",
"name": "Google Go Links",
"type": "service"
},
{
"dateClose": "2021-01-26",
"dateOpen": "2016-04-05",
"description": "Tilt Brush was a room-scale 3D-painting virtual-reality application available from Google, originally developed by Skillman & Hackett.",
"link": "https://www.tiltbrush.com/",
"name": "Tilt Brush",
"type": "app"
},
{
"dateClose": "2022-01-05",
"dateOpen": "2015-05-28",
"description": "Android Things was an Android-based embedded operating system (originally named Brillo) aimed to run on Internet of Things (IoT) devices.",
"link": "https://android-developers.googleblog.com/2019/02/an-update-on-android-things.html",
"name": "Android Things",
"type": "service"
},
{
"dateClose": "2020-12-10",
"dateOpen": "2017-12-14",
"description": "YouTube VR allowed you to easily find and watch 360 videos and virtual reality content with SteamVR-compatible headsets.",
"link": "https://steamdb.info/app/755770/history/",
"name": "YouTube VR (SteamVR)",
"type": "app"
},
{
"dateClose": "2021-06-08",
"dateOpen": "2016-06-01",
"description": "Measure allowed users to take measurements of everyday objects with their device's camera utilizing ARCore technology.",
"link": "https://www.androidpolice.com/2021/06/08/google-kills-measure-its-ar-based-measurement-taking-app/",
"name": "Measure",
"type": "app"
},
{
"dateClose": "2021-03-31",
"dateOpen": "2011-09-25",
"description": "Google Crisis Map was a website that allowed to create, publish, and share maps by combining layers from anywhere on the web.",
"link": "https://web.archive.org/web/20211209021628/https://support.google.com/maps/answer/10394155",
"name": "Google Crisis Map",
"type": "service"
},
{
"dateClose": "2020-06-24",
"dateOpen": "2018-09-01",
"description": "Pigeon Transit was a transit app that used crowdsourced information about delays, crowded trains, escalator outages, live entertainment, dirty or unsafe conditions.",
"link": "https://www.slashgear.com/pigeon-crowdsourced-transit-app-experiment-is-shutting-down-11624401/",
"name": "Pigeon Transit",
"type": "app"
},
{
"dateClose": "2020-05-13",
"dateOpen": "2008-08-19",
"description": "Enhanced 404 Pages was a JavaScript library that added suggested URLs and a search box to a website's 404 Not Found page.",
"link": "https://webmasters.googleblog.com/2008/08/make-your-404-pages-more-useful.html",
"name": "Enhanced 404 Pages",
"type": "service"
},
{
"dateClose": "2010-02-28",
"dateOpen": "2006-12-01",
"description": "YouTube Streams allowed users to watch a YouTube video together while chatting about the video in real-time.",
"link": "https://mashable.com/archive/youtube-test-tube",
"name": "YouTube Streams",
"type": "service"
},
{
"dateClose": "2020-08-31",
"dateOpen": "2019-02-05",
"description": "Password Checkup provided a warning to users if they were using a username and password combination checked against over 4 billion credentials that Google knew to be unsafe.",
"link": "https://9to5google.com/2020/07/30/password-checkup-chrome-extension/",
"name": "Password Checkup extension",
"type": "app"
},
{
"dateClose": "2020-06-30",
"dateOpen": "2020-02-01",
"description": "Google Photos Print was a subscription service that automatically selected the best ten photos from the last thirty days which were mailed to user's homes.",
"link": "https://www.forbes.com/sites/paulmonckton/2020/06/20/google-photos-featue-cancellation-auto-print-selection/#19631af66294",
"name": "Google Photos Print",
"type": "service"
},
{
"dateClose": "2020-10-22",
"dateOpen": "2011-11-16",
"description": "Google Play Music was a music and podcast streaming service, and online music locker.",
"link": "https://youtube.googleblog.com/2020/05/youtube-music-transfer-google-play-music-library.html",
"name": "Google Play Music",
"type": "service"
},
{
"dateClose": "2020-05-12",
"dateOpen": "2019-06-10",
"description": "Shoelace was an app used to find group activities with others who share your interests.",
"link": "https://9to5google.com/2020/04/28/shoelace-area-120-shutdown/",
"name": "Shoelace",
"type": "app"
},
{
"dateClose": "2020-05-12",
"dateOpen": "2018-05-31",
"description": " Neighbourly was a mobile app designed to help you learn about your neighborhood by asking other residents, and find out about local services and facilities in your area from people who live around you.",
"link": "https://thenextweb.com/google/2020/04/02/google-is-shutting-down-its-neighbourly-app/",
"name": "Neighbourly",
"type": "app"
},
{
"dateClose": "2020-03-19",
"dateOpen": "2018-05-09",
"description": "Material Theme Editor was a plugin for Sketch App which allowed you to create a material-based design system for your app.",
"link": "https://medium.com/google-design/whats-next-for-material-design-s-theming-tools-f65014ffcce7",
"name": "Material Theme Editor",
"type": "app"
},
{
"dateClose": "2020-02-17",
"dateOpen": "2015-09-27",
"description": "Google Station was a service that gave partners an easy set of tools to roll out Wi-Fi hotspots in public places. Google Station provided software and guidance on hardware to turn fiber connections into fast, reliable, and safe Wi-Fi zones.",
"link": "https://india.googleblog.com/2020/02/five-years-400-stations-and-thousands.html",
"name": "Google Station",
"type": "service"
},
{
"dateClose": "2020-02-06",
"dateOpen": "2013-04-18",
"description": "One Today was an app that allowed users to donate $1 to different organizations and discover how their donation would be used.",
"link": "https://techcrunch.com/2013/04/18/googles-one-today-app-aims-to-make-charitable-donations-a-more-social-and-frequent-experience/",
"name": "One Today",
"type": "app"
},
{
"dateClose": "2021-01-19",
"dateOpen": "2016-11-30",
"description": "App Maker was a tool that allowed its users to build and deploy custom business apps easily and securely on the web without writing much code.",
"link": "https://en.wikipedia.org/wiki/Google_App_Maker",
"name": "App Maker",
"type": "service"
},
{
"dateClose": "2018-01-12",
"dateOpen": "2016-06-30",
"description": "SoundStage was a virtual reality music sandbox built specifically for room-scale VR.",
"link": "https://github.com/googlearchive/soundstagevr",
"name": "SoundStage",
"type": "service"
},
{
"dateClose": "2020-12-31",
"dateOpen": "2010-04-16",
"description": "Google Cloud Print allowed users to 'print from anywhere;' to print from web, desktop, or mobile to any Google Cloud Print-connected printer.",
"link": "https://9to5google.com/2019/11/21/google-cloud-print-dead-2020/",
"name": "Google Cloud Print",
"type": "service"
},
{
"dateClose": "2019-03-13",
"dateOpen": "2013-10-01",
"description": "Google Spotlight Stories was an app and content studio project which created immersive stories for mobile and VR.",
"link": "https://variety.com/2019/digital/news/google-spotlight-stories-shutting-down-1203163117/",
"name": "Google Spotlight Stories",
"type": "service"
},
{
"dateClose": "2019-10-17",
"dateOpen": "2017-06-01",
"description": "Datally (formerly Triangle) was a smart app by Google that helped you save, manage, and share your mobile data.",
"link": "https://thenextweb.com/google/2019/10/17/googles-datally-app-for-saving-on-mobile-data-is-dead/",
"name": "Datally",
"type": "app"
},
{
"dateClose": "2011-06-05",
"dateOpen": "1997-09-15",
"description": "Google Specialized Search allowed users to search across a limited index of the web for specialized topics like Linux, Microsoft, and 'Uncle Sam.'",
"link": "https://www.seroundtable.com/google-uncle-sam-13518.html",
"name": "Google Specialized Search",
"type": "service"
},
{
"dateClose": "2019-10-15",
"dateOpen": "2017-10-04",
"description": "Google Clips was a miniature clip-on camera that could automatically capture interesting or relevant video clips determined by machine learning algorithms.",
"link": "https://en.wikipedia.org/wiki/Google_Clips",
"name": "Google Clips",
"type": "hardware"
},
{
"dateClose": "2019-10-15",
"dateOpen": "2016-11-10",
"description": "Google Daydream was a virtual reality platform and set of hardware devices that worked with certain Android phones.",
"link": "https://en.wikipedia.org/wiki/Google_Daydream",
"name": "Google Daydream",
"type": "hardware"
},
{
"dateClose": "2019-11-22",
"dateOpen": "2018-01-26",
"description": "Google Bulletin was a hyperlocal news service where users could post news from their neighborhood and allow others in the same areas to hear those stories.",
"link": "https://www.androidpolice.com/2019/09/26/googles-hyperlocal-news-app-bulletin-is-shutting-down/",
"name": "Google Bulletin",
"type": "service"
},
{
"dateClose": "2019-11-17",
"dateOpen": "2018-09-18",
"description": "Touring Bird was an Area 120 incubator project which helped users compare prices, book tours, tickets, and experiences, and learn about top destinations around the world.",
"link": "https://9to5google.com/2019/10/22/google-touring-bird/",
"name": "Touring Bird",
"type": "service"
},
{
"dateClose": "2019-10-02",
"dateOpen": "2010-07-07",
"description": "YouTube Leanback was an optimized version of YouTube used for television web browsers and WebView application wrappers.",
"link": "https://9to5google.com/2019/09/16/youtube-leanback-tv-interface-disabled-soon/",
"name": "YouTube Leanback",
"type": "service"
},
{
"dateClose": "2019-09-03",
"dateOpen": "2013-11-29",
"description": "YouTube for Nintendo 3DS allowed users to stream YouTube videos on the portable gaming console.",
"link": "https://9to5google.com/2019/08/26/youtube-nintendo-3ds-app-shut-down/",
"name": "YouTube for Nintendo 3DS",
"type": "app"
},
{
"dateClose": "2020-09-01",
"dateOpen": "2017-07-18",
"description": "Google Hire was an applicant tracking system to help small to medium businesses distribute jobs, identify and attract candidates, build strong relationships with candidates, and efficiently manage the interview process.",
"link": "https://www.theverge.com/2019/8/28/20837004/google-hire-next-tool-shut-down-service-jobs-hiring-recruiting-inbox-allo",
"name": "Hire by Google",
"type": "service"
},
{
"dateClose": "2019-12-15",
"dateOpen": "2011-05-25",
"description": "Google Correlate was a service that provided users information about how strongly the frequency of multiple search terms correlates with each other over a specified time interval.",
"link": "https://de.wikipedia.org/wiki/Google_Correlate",
"name": "Google Correlate",
"type": "service"
},
{
"dateClose": "2019-09-18",
"dateOpen": "2017-08-07",
"description": "YouTube Messages was a direct messaging feature that allowed users to share and discuss videos one-on-one and in groups on YouTube.",
"link": "https://9to5google.com/2019/08/20/youtube-killing-messages",
"name": "YouTube Messages",
"type": "service"
},
{
"dateClose": "2019-09-30",
"dateOpen": "2011-01-27",
"description": "Follow Your World allowed users to register points of interest on Google Maps and receive email updates whenever the imagery was updated.",
"link": "https://maps.googleblog.com/2011/01/sign-up-for-imagery-update-alert.html",
"name": "Follow Your World",
"type": "service"
},
{
"dateClose": "2019-06-15",
"dateOpen": "2018-09-07",
"description": "Blog Compass was a blog management tool that integrated with WordPress and Blogger available only in India.",
"link": "https://9to5google.com/2019/07/15/google-kills-blog-compass/",
"name": "Blog Compass",
"type": "app"
},
{
"dateClose": "2009-08-05",
"dateOpen": "2007-01-01",
"description": "Google Radio Automation was a hardware and software service used by radio operators to automate song playing among other radio station functions.",
"link": "https://en.wikipedia.org/wiki/List_of_Google_products#2018",
"name": "Google Radio Automation",
"type": "hardware"
},
{
"dateClose": "2021-03-03",
"dateOpen": "2014-06-25",
"description": "Google Cardboard was a low-cost, virtual reality (VR) platform named after its folded cardboard viewer into which a smartphone was inserted.",
"link": "https://en.wikipedia.org/wiki/Google_Cardboard",
"name": "Google Cardboard",
"type": "hardware"
},
{
"dateClose": "2017-09-20",
"dateOpen": "2010-06-15",
"description": "YouTube Video Editor was a web-based tool for editing, merging, and adding special effects to video content.",
"link": "https://mashable.com/2017/07/23/youtube-kills-video-editor-tool/",
"name": "YouTube Video Editor",
"type": "service"
},
{
"dateClose": "2016-05-15",
"dateOpen": "2012-05-02",
"description": "Revolv was a monitoring and control system that allowed users to control their connected devices from a single hub.",
"link": "https://www.zdnet.com/article/revolv-is-dead-google-killed-it-long-live-innovation/",
"name": "Revolv",
"type": "hardware"
},
{
"dateClose": "2019-01-11",
"dateOpen": "2015-09-29",
"description": "Chromecast Audio was a device that allowed users to stream audio from any device to any speaker with an audio input.",
"link": "https://en.wikipedia.org/wiki/Chromecast#Chromecast_Audio",
"name": "Chromecast Audio",
"type": "hardware"
},
{
"dateClose": "2019-03-13",
"dateOpen": "2016-09-21",
"description": "Google Allo was an instant messaging mobile app for Android, iOS, and Web with special features like a virtual assistant and encrypted mode.",
"link": "https://en.wikipedia.org/wiki/Google_Allo",
"name": "Google Allo",
"type": "app"
},
{
"dateClose": "2020-07-22",
"dateOpen": "2019-05-01",
"description": "CallJoy was an Area 120 project that provided phone automation for small-to-medium businesses allowing them to train the bot agent with responses to common customer questions.",
"link": "https://techcrunch.com/2019/05/01/google-launches-calljoy-a-virtual-customer-service-phone-agent-for-small-businesses/",
"name": "CallJoy",
"type": "app"
},
{
"dateClose": "2015-12-21",
"dateOpen": "2005-09-14",
"description": "Google Blog Search API was a way to search blogs utilizing Google.",
"link": "https://en.wikipedia.org/wiki/Google_Blog_Search",
"name": "Google Blog Search API",
"type": "service"
},
{
"dateClose": "2011-07-02",
"dateOpen": "2009-12-07",
"description": "Google Real-Time Search provided live search results from Twitter, Facebook, and news websites.",
"link": "https://en.wikipedia.org/wiki/Google_Real-Time_Search",
"name": "Google Real-Time Search",
"type": "service"
},
{
"dateClose": "2019-04-02",
"dateOpen": "2015-05-28",
"description": "Inbox by Gmail aimed to improve email through several key features.",
"link": "https://en.wikipedia.org/wiki/Inbox_by_Gmail",
"name": "Inbox by Gmail",
"type": "service"
},
{
"dateClose": "2012-10-05",
"dateOpen": "2011-02-09",
"description": "Sparrow was an email client for OS X and iOS. Google acquired and then killed it.",
"link": "https://en.wikipedia.org/wiki/Sparrow_(email_client)",
"name": "Sparrow",
"type": "app"
},
{
"dateClose": "2006-12-01",
"dateOpen": "2002-04-18",
"description": "Google Answers was an online knowledge market.",
"link": "https://en.wikipedia.org/wiki/Google_Answers",
"name": "Google Answers",
"type": "service"
},
{
"dateClose": "2006-05-08",
"dateOpen": "2003-11-10",
"description": "Google Deskbar was a small inset window on the Windows toolbar and allowed users to perform searches without leaving the desktop.",
"link": "https://web.archive.org/web/20210225060348/https://www.computerweekly.com/news/2240053391/Google-launches-Deskbar-software",
"name": "Google Deskbar",
"type": "service"
},
{
"dateClose": "2006-10-10",
"dateOpen": "2005-08-01",
"description": "Writely was a Web-based word processor.",
"link": "https://en.wikipedia.org/wiki/Writely",
"name": "Writely",
"type": "service"
},
{
"dateClose": "2007-12-01",
"dateOpen": "2004-01-01",
"description": "Google Click-to-Call allowed a user to speak directly over the phone to businesses found in search results.",
"link": "https://en.wikipedia.org/wiki/AdWords#Google_Click-to-Call",
"name": "Google Click-to-Call",
"type": "service"
},
{
"dateClose": "2013-07-01",
"dateOpen": "2005-10-07",
"description": "Google Reader was an RSS/Atom feed aggregator.",
"link": "https://en.wikipedia.org/wiki/Google_Reader",
"name": "Google Reader",
"type": "service"
},
{
"dateClose": "2012-04-30",
"dateOpen": "2009-09-01",
"description": "Google Wave was an online communication and collaborative real-time editor tool.",
"link": "https://en.wikipedia.org/wiki/Google_Wave",
"name": "Google Wave",
"type": "service"
},
{
"dateClose": "2011-11-11",
"dateOpen": "2008-08-10",
"description": "Google Notebook allowed users to save and organize clips of information while conducting research online.",
"link": "https://en.wikipedia.org/wiki/Google_Notebook",
"name": "Google Notebook",
"type": "service"
},
{
"dateClose": "2016-08-31",
"dateOpen": "2012-11-28",
"description": "Web hosting in Google Drive allowed users to publish live websites by uploading HTML, CSS, and other files.",
"link": "https://gsuite-developers.googleblog.com/2015/08/deprecating-web-hosting-support-in.html",
"name": "Web Hosting in Google Drive",
"type": "service"
},
{
"dateClose": "2018-04-30",
"dateOpen": "2010-05-31",
"description": "Encrypted Search provided users with anonymous internet searching.",
"link": "https://en.wikipedia.org/wiki/Google_Search#Dedicated_encrypted_search_page",
"name": "Encrypted Search",
"type": "service"
},
{
"dateClose": "2018-08-20",
"dateOpen": "2010-10-05",
"description": "Google Goggles was used for searches based on pictures taken by handheld devices.",
"link": "https://en.wikipedia.org/wiki/Google_Goggles",
"name": "Google Goggles",
"type": "service"
},
{
"dateClose": "2013-11-01",
"dateOpen": "2005-05-19",
"description": "iGoogle was a customizable Ajax-based start page or personal web portal.",
"link": "https://en.wikipedia.org/wiki/IGoogle",
"name": "iGoogle",
"type": "service"
},
{
"dateClose": "2017-02-16",
"dateOpen": "2016-05-16",
"description": "Google Spaces was an app for group discussions and messaging.",
"link": "https://en.wikipedia.org/wiki/Google_Spaces_(service)",
"name": "Google Spaces",
"type": "service"
},
{
"dateClose": "2017-03-31",
"dateOpen": "2008-06-23",
"description": "Google Map Maker was a mapping and map editing service where users were able to draw features directly onto a map.",
"link": "https://en.wikipedia.org/wiki/Google_Map_Maker",
"name": "Google Map Maker",
"type": "service"
},
{
"dateClose": "2017-09-01",
"dateOpen": "2007-03-01",
"description": "Trendalyzer was a data trend viewing platform.",
"link": "https://en.wikipedia.org/wiki/Trendalyzer",
"name": "Trendalyzer",
"type": "service"
},
{
"dateClose": "2015-10-09",
"dateOpen": "2002-10-15",
"description": "Picasa was an image organizer and image viewer for organizing and editing digital photos.",
"link": "https://en.wikipedia.org/wiki/Picasa",
"name": "Picasa",
"type": "service"
},
{
"dateClose": "2016-01-15",
"dateOpen": "2005-03-17",
"description": "Google Code was a service that provided revision control, an issue tracker, and a wiki for code documentation.",
"link": "https://en.wikipedia.org/wiki/Google_Developers#Google_Code",
"name": "Google Code",
"type": "service"
},
{
"dateClose": "2016-07-01",
"dateOpen": "2011-07-01",
"description": "Google Swiffy was a web-based tool that converted SWF files to HTML5.",
"link": "https://en.wikipedia.org/wiki/Google_Swiffy",
"name": "Google Swiffy",
"type": "service"
},
{
"dateClose": "2016-11-04",
"dateOpen": "2005-10-23",
"description": "Panoramio was a geo-location tagging and photo sharing product.",
"link": "https://en.wikipedia.org/wiki/Panoramio",
"name": "Panoramio",
"type": "service"
},
{
"dateClose": "2015-04-20",
"dateOpen": "2013-11-15",
"description": "Google Helpouts was an online collaboration service where users could share their expertise through live video.",
"link": "https://en.wikipedia.org/wiki/Google_Helpouts",
"name": "Google Helpouts",
"type": "service"
},
{
"dateClose": "2015-06-30",
"dateOpen": "2008-09-01",
"description": "Google Moderator was a service that used crowdsourcing to rank user-submitted questions, suggestions, and ideas.",
"link": "https://en.wikipedia.org/wiki/Google_Moderator",
"name": "Google Moderator",
"type": "service"
},
{
"dateClose": "2014-06-23",
"dateOpen": "2007-06-28",
"description": "Google Questions and Answers was a free knowledge market that allowed users to collaboratively find answers to their questions.",
"link": "https://en.wikipedia.org/wiki/Google_Questions_and_Answers",
"name": "Google Questions and Answers",
"type": "service"
},
{
"dateClose": "2014-09-30",
"dateOpen": "2004-01-24",
"description": "Orkut was a social network designed to help users meet new and old friends and maintain existing relationships.",
"link": "https://en.wikipedia.org/wiki/Orkut",
"name": "Orkut",
"type": "service"
},
{
"dateClose": "2014-06-25",
"dateOpen": "2013-09-19",
"description": "Quickoffice was a productivity suite for mobile devices which allowed the viewing, creating and editing of documents, presentations and spreadsheets.",
"link": "https://en.wikipedia.org/wiki/Quickoffice",
"name": "Quickoffice",
"type": "app"
},
{
"dateClose": "2014-01-31",
"dateOpen": "2005-01-01",
"description": "Google Notifier alerted users to new emails on their Gmail account.",
"link": "https://www.theverge.com/2014/1/16/5316748/google-quietly-kills-off-its-notifier-service-for-mail-and-calendar",
"name": "Google Notifier",
"type": "service"
},
{
"dateClose": "2012-07-11",
"dateOpen": "2005-09-14",
"description": "Meebo was a browser-based instant messaging application which supported multiple IM services.",
"link": "https://en.wikipedia.org/wiki/Meebo",
"name": "Meebo",
"type": "service"
},
{
"dateClose": "2012-12-31",
"dateOpen": "2007-12-06",
"description": "Google Chart API was an interactive Web service that created graphical charts from user-supplied data.",
"link": "https://en.wikipedia.org/wiki/Google_Chart_API",
"name": "Google Chart API",
"type": "service"
},
{
"dateClose": "2012-12-31",
"dateOpen": "2007-12-06",
"description": "Google Mini was a smaller version of the Google Search Appliance.",
"link": "https://en.wikipedia.org/wiki/Google_Search_Appliance#Google_Mini",
"name": "Google Mini",
"type": "hardware"
},
{
"dateClose": "2018-12-31",
"dateOpen": "2002-01-01",
"description": "Google Search Appliance was a rack-mounted device that provided document indexing functionality.",
"link": "https://en.wikipedia.org/wiki/Google_Search_Appliance",
"name": "Google Search Appliance",
"type": "hardware"
},
{
"dateClose": "2019-03-30",
"dateOpen": "2009-12-01",
"description": "Google URL Shortener, also known as goo.gl, was a URL shortening service.",
"link": "https://en.wikipedia.org/wiki/Google_URL_Shortener",
"name": "Google URL Shortener",
"type": "service"
},
{
"dateClose": "2011-12-15",
"dateOpen": "2010-02-09",
"description": "Google Buzz was a social networking, microblogging and messaging tool that integrated with Gmail.",
"link": "https://en.wikipedia.org/wiki/Google_Buzz",
"name": "Google Buzz",
"type": "service"
},
{
"dateClose": "2011-09-01",
"dateOpen": "2008-01-01",
"description": "Google Desktop allowed local searches of a user's emails, computer files, music, photos, chats and Web pages viewed.",
"link": "https://en.wikipedia.org/wiki/Google_Desktop",
"name": "Google Desktop",
"type": "service"
},
{
"dateClose": "2022-06-30",
"dateOpen": "2010-12-06",
"description": "Google Chrome Apps were hosted or packaged web applications that ran on the Google Chrome browser.",
"link": "https://en.wikipedia.org/wiki/Google_Chrome_App",
"name": "Google Chrome Apps",
"type": "service"
},
{
"dateClose": "2006-09-15",
"dateOpen": "2002-01-01",
"description": "Google Public Service Search provided governmental, non-profit and academic organizational search results without ads.",
"link": "https://webmasters.googleblog.com/2006/09/for-those-wondering-about-public.html",
"name": "Google Public Service Search",
"type": "service"
},
{
"dateClose": "2007-08-11",
"dateOpen": "2006-01-07",
"description": "Google Video Marketplace was a service that included a store where videos could be bought and rented.",
"link": "https://www.hexus.net/tech/news/software/4324-google-video-marketplace/",
"name": "Google Video Marketplace",
"type": "service"
},
{
"dateClose": "2008-06-30",
"dateOpen": "2006-06-08",
"description": "Google Browser Sync was a Firefox extension that synced information like passwords and browsing history.",
"link": "https://en.wikipedia.org/wiki/Google_Browser_Sync",
"name": "Google Browser Sync",
"type": "service"
},
{
"dateClose": "2008-12-31",
"dateOpen": "2008-07-08",
"description": "Google Lively was a web-based virtual environment that provided a new way to access information.",
"link": "https://en.wikipedia.org/wiki/Google_Lively",
"name": "Google Lively",
"type": "service"
},
{
"dateClose": "2008-05-15",
"dateOpen": "2002-08-01",
"description": "Hello was a service by Picasa that let users share pictures \"like you're sitting side-by-side.\"",
"link": "https://en.wikipedia.org/wiki/Picasa#Hello",
"name": "Hello",
"type": "service"
},
{
"dateClose": "2008-11-24",
"dateOpen": "2006-10-01",
"description": "SearchMash was an experimental, non-branded search engine that Google used to be able to play around with new search technologies, concepts, and interfaces.",
"link": "https://techcrunch.com/2008/11/24/why-did-google-discontinue-searchmash/",
"name": "SearchMash",
"type": "service"
},
{
"dateClose": "2009-02-28",
"dateOpen": "2003-06-30",
"description": "Dodgeball was a location-based social network where users texted their location to the service, and it notified them of friends and points of interest nearby.",
"link": "https://en.wikipedia.org/wiki/Dodgeball_(service)",
"name": "Dodgeball",
"type": "service"
},
{
"dateClose": "2009-07-31",
"dateOpen": "2007-05-30",
"description": "Google Mashup Editor was an online web mashup creation service with publishing, syntax highlighting, and debugging.",
"link": "https://en.wikipedia.org/wiki/Google_Mashup_Editor",
"name": "Google Mashup Editor",
"type": "service"
},
{
"dateClose": "2009-10-31",
"dateOpen": "2005-05-01",
"description": "Google Ride Finder was a service that used GPS data to pinpoint and map the location of taxis, limos, and shuttle vehicles available for hire in 10 U.S. metro areas.",
"link": "https://searchenginewatch.com/sew/news/2062429/new-from-google-labs-google-ride-finder#",
"name": "Google Ride Finder",
"type": "service"
},
{
"dateClose": "2012-01-01",
"dateOpen": "2008-05-20",
"description": "Google Health was a personal health information centralization service that provided users a merged health record from multiple sources.",
"link": "https://en.wikipedia.org/wiki/Google_Health",
"name": "Google Health",
"type": "service"
},
{
"dateClose": "2012-08-21",
"dateOpen": "1999-07-01",
"description": "Postini was an e-mail, Web security, and archiving service that filtered e-mail spam and malware (before it was delivered to a client's mail server), e-mail archiving.",
"link": "https://en.wikipedia.org/wiki/Postini",
"name": "Postini",
"type": "service"
},
{
"dateClose": "2010-02-19",
"dateOpen": "1998-11-30",
"description": "Marratech was a Swedish company that made software for e-meetings (e.g., web conferencing, videoconferencing).",
"link": "https://en.wikipedia.org/wiki/Marratech",
"name": "Marratech e-meetings",
"type": "service"
},
{
"dateClose": "2010-03-03",
"dateOpen": "2008-11-20",
"description": "SearchWiki was a Google Search feature which allowed logged-in users to annotate and re-order search results.",
"link": "https://en.wikipedia.org/wiki/Google_SearchWiki",
"name": "Google SearchWiki",
"type": "service"
},
{
"dateClose": "2010-11-12",
"dateOpen": "2007-04-06",
"description": "GOOG-411 (or Google Voice Local Search) was a telephone service that provided a speech-recognition-based business directory search.",
"link": "https://en.wikipedia.org/wiki/GOOG-411",
"name": "GOOG-411",
"type": "service"
},
{
"dateClose": "2021-07-15",
"dateOpen": "2013-06-30",
"description": "Tour Builder allowed users to create and share interactive tours inside Google Earth with photos and videos of locations.",
"link": "https://knowledgequest.aasl.org/so-long-google-tour-builder-hello-google-earth/",
"name": "Tour Builder",
"type": "service"
},
{
"dateClose": "2010-12-17",
"dateOpen": "2005-10-25",
"description": "Google Base was a database provided by Google into which any user can add almost any type of content, such as text, images, and structured information.",
"link": "https://en.wikipedia.org/wiki/Google_Base",
"name": "Google Base",
"type": "service"
},
{
"dateClose": "2011-07-31",
"dateOpen": "2002-05-20",
"description": "Google Labs was a technology playground used by Google to demonstrate and test new projects.",
"link": "https://en.wikipedia.org/wiki/Google_Labs",
"name": "Google Labs",
"type": "service"
},
{
"dateClose": "2011-09-16",
"dateOpen": "2009-10-05",
"description": "Google PowerMeter was a software project of Google's philanthropic arm that helped consumers track their home electricity usage.",
"link": "https://en.wikipedia.org/wiki/Google_PowerMeter",
"name": "Google PowerMeter",
"type": "service"
},
{
"dateClose": "2019-04-02",
"dateOpen": "2011-06-28",
"description": "Google+ was an Internet-based social network.",
"link": "https://en.wikipedia.org/wiki/Google%2B",
"name": "Google+",
"type": "service"
},
{
"dateClose": "2014-02-07",
"dateOpen": "2011-07-01",
"description": "Google Schemer was a Google service for sharing and discovering things to do.",
"link": "https://en.wikipedia.org/wiki/Google_Schemer",
"name": "Google Schemer",
"type": "service"