diff options
author | Ariel <arielmaia.mp4@gmail.com> | 2024-10-05 23:23:16 -0400 |
---|---|---|
committer | Ariel <arielmaia.mp4@gmail.com> | 2024-10-05 23:23:16 -0400 |
commit | 786cb598e9ea03cbfa60bcdb074d831dac6efa24 (patch) | |
tree | f59a35aecb3a77088eedc2f9721e49ce62fb38a3 | |
parent | 2ef0f398c918ae64f490c559d44c5204f049243d (diff) | |
download | bookmarks-home-786cb598e9ea03cbfa60bcdb074d831dac6efa24.tar.gz bookmarks-home-786cb598e9ea03cbfa60bcdb074d831dac6efa24.tar.bz2 bookmarks-home-786cb598e9ea03cbfa60bcdb074d831dac6efa24.zip |
creation of manifest json file for use w/ chrome API
-rw-r--r-- | bookmarks-home/manifest.json | 12 | ||||
-rw-r--r-- | bookmarks-home/src/main.tsx | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/bookmarks-home/manifest.json b/bookmarks-home/manifest.json new file mode 100644 index 0000000..084772f --- /dev/null +++ b/bookmarks-home/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 3, + "name": "Test Manifest", + "version": "0.0.1", + "description": "Test Manifest", + "icons": { + "48": "images/icon-48.png", + "128": "images/icon-128.png" + } + + } + diff --git a/bookmarks-home/src/main.tsx b/bookmarks-home/src/main.tsx index 6f4ac9b..5c6c3b3 100644 --- a/bookmarks-home/src/main.tsx +++ b/bookmarks-home/src/main.tsx @@ -8,3 +8,5 @@ createRoot(document.getElementById('root')!).render( <App /> </StrictMode>, ) + + |