Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
OutRed
GitHub Repository: OutRed/artclass
Path: blob/main/static/data/apps.js
595 views
1
var apps = [
2
{
3
'id': 'customapp',
4
'title': 'Add custom app',
5
'image': 'assets/addicon.png'
6
},
7
{
8
"id": "google",
9
"title": "Google",
10
"url": "https://www.google.com/?safe=active&ssui=on",
11
'image': 'https://img.freepik.com/free-icon/search_318-265146.jpg'
12
13
},
14
{
15
"id": "discord",
16
"title": "Discord",
17
"url": "https://discord.com/app",
18
'image': 'https://static.vecteezy.com/system/resources/previews/006/892/625/original/discord-logo-icon-editorial-free-vector.jpg'
19
},
20
{
21
"id": "geforce",
22
"title": "GeForce NOW",
23
"url": "https://play.geforcenow.com",
24
'image': 'https://raw.githubusercontent.com/proudparrot2/cdn/main/8z9zeDIT_400x400-removebg-preview.png'
25
},
26
{
27
'id': 'vscode',
28
'title': 'Visual Studio Code',
29
'url': 'https://vscode.dev/',
30
'image': 'https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Visual_Studio_Code_1.35_icon.svg/2048px-Visual_Studio_Code_1.35_icon.svg.png'
31
},
32
{
33
"id": "tiktok",
34
"title": "TikTok",
35
"url": "https://tiktok.com",
36
'image': 'https://sf-tb-sg.ibytedtos.com/obj/eden-sg/uhtyvueh7nulogpoguhm/tiktok-icon2.png'
37
},
38
{
39
'id': 'nowgg',
40
'title': 'now.gg',
41
'url': 'https://nowgg.me/',
42
'image': 'https://uploads-ssl.webflow.com/60f008ba9757da0940af288e/6232d610e4172bed260d4cfd_9Dw5vXGi_400x400.jpeg',
43
'description': 'Now.gg is currently down (don\'t click on the roblox link)',
44
},
45
{
46
"id": "reddit",
47
"title": "Reddit",
48
"url": "https://reddit.com",
49
'image': 'https://www.redditinc.com/assets/images/site/reddit-logo.png'
50
},
51
{
52
"id": "youtube",
53
"title": "YouTube",
54
"url": "https://youtube.com",
55
'image': 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/YouTube_social_red_square_%282017%29.svg/2048px-YouTube_social_red_square_%282017%29.svg.png'
56
},
57
{
58
"id": "twitter",
59
"title": "Twitter",
60
"url": "https://twitter.com",
61
'image': 'https://seeklogo.com/images/T/twitter-icon-square-logo-108D17D373-seeklogo.com.png'
62
},
63
{
64
'id': 'spotify',
65
'title': 'Spotify',
66
'url': 'https://open.spotify.com/browse',
67
'image': 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Spotify_icon.svg/1982px-Spotify_icon.svg.png'
68
},
69
{
70
'id': 'chess',
71
'title': 'Chess.com',
72
'url': 'https://chess.com',
73
'image': 'https://images.chesscomfiles.com/uploads/v1/images_users/tiny_mce/SamCopeland/phpmeXx6V.png'
74
},
75
{
76
'id': 'sflix',
77
'title': 'SFlix',
78
'url': 'https://sflix.to',
79
'image': 'https://play-lh.googleusercontent.com/YO-cgAQEdDuX9xvEYNOdPfc0-Nxzvz4vZaIt9eBOWoh2VTPHe8eHX6byn5b94X3gpcI=s200'
80
},
81
{
82
'id': 'coolmathgames',
83
'title': 'Cool Math Games',
84
'url': 'https://coolmathgames.com',
85
'image': 'https://docs.google.com/drawings/d/e/2PACX-1vR6y2GvcGu9PdrX9zzE24dhm24hClcNsdAmZjIgSUC8sFOahf6t7Yg6l_W8Rd4GduWOH_X02GHVFdBb/pub?w=512&h=512'
86
},
87
{
88
'id': 'win11',
89
'title': 'Windows 11 in React',
90
'url': 'https://win11.blueedge.me/',
91
"image": "https://cdn.upload.systems/uploads/lnysPmIS.png",
92
"description": "A remake of the Windows 11 UI in React.js"
93
},
94
{
95
'id': 'gbaemulator',
96
'title': 'GBA Emulator',
97
'url': 'https://cattn.github.io/gba',
98
"image": "https://cattn.github.io/gba/pwa/apple-icon-180.png",
99
"description": "A Game Boy Advance retro emulator with over 3000 games, and other consoles as well"
100
}
101
]
102
103
var customapps = JSON.parse(localStorage.getItem("customapps"))
104
customapps.forEach(app => {
105
apps.push(app)
106
})
107
108
console.log("Loaded " + apps.length + " apps")
109
console.log("Loaded " + customapps.length + " custom apps")
110