A clean new tab page extension for Chrome, easy to grab and customize yourself.
browser-extensionchromechrome-extensioncsshandcodedhtmljavascriptnewtab
1<!DOCTYPE html>
2<html>
3
4<head>
5 <meta charset="utf-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
8 <title>New Tab</title>
9
10 <link rel="stylesheet" href="newtab.css">
11</head>
12
13<body>
14 <!-- ------------------------------------------------------------------- -->
15 <!-- 01 Time -->
16 <!-- ------------------------------------------------------------------- -->
17 <div id="currentTime"></div>
18
19 <!-- ------------------------------------------------------------------- -->
20 <!-- 02 Date -->
21 <!-- ------------------------------------------------------------------- -->
22 <div id="currentDate"></div>
23
24 <!-- ------------------------------------------------------------------- -->
25 <!-- 03 Weather -->
26 <!-- ------------------------------------------------------------------- -->
27 <div id="currentWeather"></div>
28
29 <!-- ------------------------------------------------------------------- -->
30 <!-- 04 Posts -->
31 <!-- ------------------------------------------------------------------- -->
32 <div id="currentPosts"></div>
33
34 <!-- ------------------------------------------------------------------- -->
35 <!-- 05 Bookmarks -->
36 <!-- ------------------------------------------------------------------- -->
37 <div id="currentBookmarks"></div>
38
39 <div id="overlay"></div>
40 <script src="newtab.js"></script>
41</body>
42
43</html>