commit e5af7cbaa3744d54c40179cd552844b40ff9be65 Author: Nick Krichevsky Date: Sun Feb 8 19:39:48 2015 -0500 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b7ff13a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_STORE \ No newline at end of file diff --git a/img/icon128.png b/img/icon128.png new file mode 100644 index 0000000..49a0b77 Binary files /dev/null and b/img/icon128.png differ diff --git a/img/icon16.png b/img/icon16.png new file mode 100644 index 0000000..636e04b Binary files /dev/null and b/img/icon16.png differ diff --git a/img/icon19.png b/img/icon19.png new file mode 100644 index 0000000..ee765aa Binary files /dev/null and b/img/icon19.png differ diff --git a/img/icon38.png b/img/icon38.png new file mode 100644 index 0000000..ee765aa Binary files /dev/null and b/img/icon38.png differ diff --git a/img/icon48.png b/img/icon48.png new file mode 100644 index 0000000..e85c900 Binary files /dev/null and b/img/icon48.png differ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..0d9b869 --- /dev/null +++ b/manifest.json @@ -0,0 +1,23 @@ +{ + "name":"Tabular", + "description":"Tree-based-tabs in chrome", + "author":"ollien", + "version":"0.1", + "manifest_version":3, + "icons":{ + "16":"img/icon16.png", + "48":"img/icon48.png", + "128":"img/icon128.png" + }, + "offline_enabled":true, + "browser_action":{ + "default_icon":{ + "19":"img/icon19.png", + "38":"img/icon38.png" + }, + "default_popup":"popup.html" + }, + "permissions":["tabs","storage","unlimitedStorage"] + + +} \ No newline at end of file diff --git a/popup.html b/popup.html new file mode 100644 index 0000000..d606353 --- /dev/null +++ b/popup.html @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/popup.js b/popup.js new file mode 100644 index 0000000..f434d55 --- /dev/null +++ b/popup.js @@ -0,0 +1,3 @@ +document.addEventListener('DOMContentLoaded', function() { + document.getElementById("text").textContent = "I'm just an excentsion. Sitting here in Google Chrome"; +});