Initial commit
This commit is contained in:
commit
e5af7cbaa3
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.DS_STORE
|
BIN
img/icon128.png
Normal file
BIN
img/icon128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3 KiB |
BIN
img/icon16.png
Normal file
BIN
img/icon16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
img/icon19.png
Normal file
BIN
img/icon19.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
img/icon38.png
Normal file
BIN
img/icon38.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
img/icon48.png
Normal file
BIN
img/icon48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
23
manifest.json
Normal file
23
manifest.json
Normal 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
9
popup.html
Normal 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>
|
Loading…
Reference in a new issue