Initial push...

This commit is contained in:
2018-05-01 19:04:30 -05:00
parent 6e274c35bd
commit 9b8db70b0d
11 changed files with 306 additions and 0 deletions

10
src/pages/newTab.html Normal file
View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>New Tab</title>
<meta charset="utf-8"/>
</head>
<body>
<script src="../scripts/loadNewPage.js"></script>
</body>
</html>

26
src/pages/options.html Executable file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>Alt Tab Page Settings</title>
<meta charset="utf-8"/>
<style media="screen">
button { float: right; }
#tabPageToLoad { width: 100%; margin-bottom: 0.5em; }
</style>
</head>
<body>
<font size="4">
<p>
Alt Tab Page allows the user to select their preferred load page for new tabs and defaults to Google's when not in use.
<br/><br/>
<label>Prefered Tab Page:</label>
<input id="tabPageToLoad" type="text" value="">
<button id="saveButtonAction" type="button" name="ButtonSave">Save</button>
<button id="delButtonAction" type="button" name="ButtonDel">Delete</button>
</p>
</font>
<script src="../scripts/altTabPageSettings.js"></script>
</body>
</html>