diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-10-15 23:20:33 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-10-15 23:20:33 -0400 |
commit | f24cfc32734a168254f0c0e4889a989bb69ee444 (patch) | |
tree | 629f0eddce0442283084e2e1910f661ed0e8a1c0 /extension/public/manifest.json | |
parent | 0eb5b8dcd94453e0aed45001e29761bd1d6c0b0e (diff) | |
download | bookmarks-home-f24cfc32734a168254f0c0e4889a989bb69ee444.tar.gz bookmarks-home-f24cfc32734a168254f0c0e4889a989bb69ee444.tar.bz2 bookmarks-home-f24cfc32734a168254f0c0e4889a989bb69ee444.zip |
populate widgets with actual bookmarks
Diffstat (limited to 'extension/public/manifest.json')
-rw-r--r-- | extension/public/manifest.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extension/public/manifest.json b/extension/public/manifest.json new file mode 100644 index 0000000..cd012dc --- /dev/null +++ b/extension/public/manifest.json @@ -0,0 +1,26 @@ +{ + "manifest_version": 3, + "name": "Beyond the Bar", + "version": "0.0.1", + "description": "A \"Better Bookmarks Page\" that allows for more freedom through page manipulation to display bookmarks in an easier to access manner.", + "chrome_url_overrides" : { + "newtab": "index.html" + }, + "icons": { + "32": "icons/icon-32.png", + "48": "icons/icon-48.png", + "128": "icons/icon-128.png" + }, + "author": "Owen Howell, Tyler Ferrari, Ariel Levy; students at RIT", + "permissions": [ + "bookmarks", + "favicon" + ], + "web_accessible_resources": [ + { + "resources": ["_favicon/*"], + "matches": ["<all_urls>"], + "extension_ids": ["*"] + } + ] +} |