aboutsummaryrefslogtreecommitdiff
path: root/extension/public/manifest.json
blob: 27ba8011f639da9eba68cc27c72e40e1b7cdd2e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [{
    "js": ["iconGrabber.js"],
    "matches": ["<all_urls>"]
  }]
}