diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-09-21 00:24:21 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-09-21 00:24:21 -0400 |
commit | f8338b90dac9c048df2fedceb0984f5a5728d454 (patch) | |
tree | 55ab42ee35e1da6b446ef79ee540625784d511d4 /extension/manifest.json | |
parent | 328eb7fd13b6267c04c1a430b9f4c011627c08f4 (diff) | |
download | bookmarks-home-f8338b90dac9c048df2fedceb0984f5a5728d454.tar.gz bookmarks-home-f8338b90dac9c048df2fedceb0984f5a5728d454.tar.bz2 bookmarks-home-f8338b90dac9c048df2fedceb0984f5a5728d454.zip |
Make a functional new tab extension
Diffstat (limited to 'extension/manifest.json')
-rw-r--r-- | extension/manifest.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/extension/manifest.json b/extension/manifest.json new file mode 100644 index 0000000..f0a2577 --- /dev/null +++ b/extension/manifest.json @@ -0,0 +1,15 @@ +{ + "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" + } +} + |