diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea050e9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +._* diff --git a/README.md b/README.md index dafffe9..2693eb4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # Tab-Restore +A chrome extensional tool for store current pages and restore stored pages in another day. + diff --git a/buttion.css b/buttion.css new file mode 100644 index 0000000..66b2a79 --- /dev/null +++ b/buttion.css @@ -0,0 +1,13 @@ +button { + height: 30px; + width: 30px; + outline: none; + margin: 10px; + border: none; + border-radius: 2px; +} + +button.current { + box-shadow: 0 0 0 2px white, + 0 0 0 4px black; +} \ No newline at end of file diff --git a/images/get_started128.png b/images/get_started128.png new file mode 100644 index 0000000..4c1cf87 Binary files /dev/null and b/images/get_started128.png differ diff --git a/images/get_started16.png b/images/get_started16.png new file mode 100644 index 0000000..fb8531c Binary files /dev/null and b/images/get_started16.png differ diff --git a/images/get_started32.png b/images/get_started32.png new file mode 100644 index 0000000..7715223 Binary files /dev/null and b/images/get_started32.png differ diff --git a/images/get_started48.png b/images/get_started48.png new file mode 100644 index 0000000..94ddde9 Binary files /dev/null and b/images/get_started48.png differ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..ee54d56 --- /dev/null +++ b/manifest.json @@ -0,0 +1,21 @@ +{ + "name":"Tab-Restore", + "description":"A tool for restoring pages that you want to explore from yestoday.", + "version":"1.0", + "permissions":["storage"], + "action":{ + "default_popup":"popup.html", + "default_icon": { + "16": "/images/get_started16.png", + "32": "/images/get_started32.png", + "48": "/images/get_started48.png", + "128": "/images/get_started128.png" + } + }, + "icons":{ + "16": "/images/get_started16.png", + "32": "/images/get_started32.png", + "48": "/images/get_started48.png", + "128": "/images/get_started128.png" + } +} \ No newline at end of file diff --git a/popup.html b/popup.html new file mode 100644 index 0000000..9354cff --- /dev/null +++ b/popup.html @@ -0,0 +1,13 @@ + + + +
+ + + + + + + + + \ No newline at end of file diff --git a/popup.js b/popup.js new file mode 100644 index 0000000..e61d6cd --- /dev/null +++ b/popup.js @@ -0,0 +1,3 @@ +store.addEventListener("click",async()=>{ + +}); \ No newline at end of file