diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-09-27 22:07:43 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-09-27 22:07:43 -0400 |
commit | 2ef0f398c918ae64f490c559d44c5204f049243d (patch) | |
tree | a6910196f0eb77d1595ef3627b6baf27c7a1a235 /extension | |
parent | 467116bc270cc3a46f9a7570f77ec79fb6ccc386 (diff) | |
download | bookmarks-home-2ef0f398c918ae64f490c559d44c5204f049243d.tar.gz bookmarks-home-2ef0f398c918ae64f490c559d44c5204f049243d.tar.bz2 bookmarks-home-2ef0f398c918ae64f490c559d44c5204f049243d.zip |
REACT
Diffstat (limited to 'extension')
-rw-r--r-- | extension/images/icon-128.png | bin | 3401 -> 0 bytes | |||
-rw-r--r-- | extension/images/icon-32.png | bin | 930 -> 0 bytes | |||
-rw-r--r-- | extension/images/icon-48.png | bin | 1306 -> 0 bytes | |||
-rw-r--r-- | extension/manifest.json | 15 | ||||
-rw-r--r-- | extension/style.css | 13 | ||||
-rw-r--r-- | extension/tab.html | 13 |
6 files changed, 0 insertions, 41 deletions
diff --git a/extension/images/icon-128.png b/extension/images/icon-128.png Binary files differdeleted file mode 100644 index 9cad318..0000000 --- a/extension/images/icon-128.png +++ /dev/null diff --git a/extension/images/icon-32.png b/extension/images/icon-32.png Binary files differdeleted file mode 100644 index 85d54b8..0000000 --- a/extension/images/icon-32.png +++ /dev/null diff --git a/extension/images/icon-48.png b/extension/images/icon-48.png Binary files differdeleted file mode 100644 index 3ec5e14..0000000 --- a/extension/images/icon-48.png +++ /dev/null diff --git a/extension/manifest.json b/extension/manifest.json deleted file mode 100644 index f0a2577..0000000 --- a/extension/manifest.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "manifest_version": 3, - "name": "Bookmarks Home", - "description": "Your bookmarks beyond the bar", - "version": "0.1", - "chrome_url_overrides" : { - "newtab": "tab.html" - }, - "icons": { - "32": "images/icon-32.png", - "48": "images/icon-48.png", - "128": "images/icon-128.png" - } -} - diff --git a/extension/style.css b/extension/style.css deleted file mode 100644 index 1900986..0000000 --- a/extension/style.css +++ /dev/null @@ -1,13 +0,0 @@ -body, html { - padding: 0; - margin: 0; - width: 100%; - height: 100%; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - font-family: 'Montserrat', sans-serif; - color: white; - background-color: #393939; -}
\ No newline at end of file diff --git a/extension/tab.html b/extension/tab.html deleted file mode 100644 index 30a839a..0000000 --- a/extension/tab.html +++ /dev/null @@ -1,13 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <title>Bookmarks Home</title> - <link rel="stylesheet" href="style.css"> - </head> - <body> - <img src="images/icon-128.png"> - <h1>Bookmarks Home</h1> - <span>BEYOND THE BAR</span> - </body> -</html> - |