Initial commit

font-awesome
Nick Krichevsky 2015-02-08 19:39:48 -05:00
commit e5af7cbaa3
9 changed files with 36 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.DS_STORE

BIN
img/icon128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
img/icon16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
img/icon19.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
img/icon38.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
img/icon48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

23
manifest.json Normal file
View File

@ -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"]
}

9
popup.html Normal file
View File

@ -0,0 +1,9 @@
<!doctype html>
<html style="height:600px; width:400px">
<head>
<script src="popup.js"></script>
</head>
<body>
<span id="text"></span>
</body>
</html>

3
popup.js Normal file
View File

@ -0,0 +1,3 @@
document.addEventListener('DOMContentLoaded', function() {
document.getElementById("text").textContent = "I'm just an excentsion. Sitting here in Google Chrome";
});