diff --git a/MaterialIcons-Regular.eot b/MaterialIcons-Regular.eot
new file mode 100644
index 0000000..70508eb
Binary files /dev/null and b/MaterialIcons-Regular.eot differ
diff --git a/MaterialIcons-Regular.ttf b/MaterialIcons-Regular.ttf
new file mode 100644
index 0000000..7015564
Binary files /dev/null and b/MaterialIcons-Regular.ttf differ
diff --git a/MaterialIcons-Regular.woff b/MaterialIcons-Regular.woff
new file mode 100644
index 0000000..b648a3e
Binary files /dev/null and b/MaterialIcons-Regular.woff differ
diff --git a/MaterialIcons-Regular.woff2 b/MaterialIcons-Regular.woff2
new file mode 100644
index 0000000..9fa2112
Binary files /dev/null and b/MaterialIcons-Regular.woff2 differ
diff --git a/background.js b/background.js
new file mode 100644
index 0000000..7ccd051
--- /dev/null
+++ b/background.js
@@ -0,0 +1,46 @@
+(function(window, chrome) {
+ //Background Scope
+ var background = {};
+ window.background = background;
+
+ //Create window and add listeners
+ chrome.app.runtime.onLaunched.addListener(function() {
+ chrome.app.window.create('index.html', {
+ 'state': 'fullscreen',
+
+ 'bounds': {
+ 'width': 1366,
+ 'height': 768
+ }
+ }, function(window) {
+ window.onClosed.addListener(function() {
+ background.setKeyboard(false);
+ chrome.power.releaseKeepAwake();
+ });
+ background.setKeyboard(true);
+ chrome.power.requestKeepAwake('display');
+ });
+ });
+
+ /**
+ * Enables or disables the on-screen keyboard.
+ *
+ * If enable is true, the virtual keyboard of the ChromeOS
+ * accessibility features will be enabled. If false, this function will
+ * return the setting to its original value.
+ * @param {boolean} enable true to enable, or false to reset
+ * @returns {undefined}
+ */
+ background.setKeyboard = function(enable) {
+ if (chrome.accessibilityFeatures) {
+ if (enable) {
+ chrome.accessibilityFeatures.virtualKeyboard.set({
+ value: enable
+ });
+ }
+ else {
+ chrome.accessibilityFeatures.virtualKeyboard.clear({});
+ }
+ }
+ };
+})(window, chrome);
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..cca5f8b
--- /dev/null
+++ b/index.html
@@ -0,0 +1,453 @@
+
+
+