summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/examples/api/bookmarks/basic/manifest.json
blob: 1dc28abed77bbcf28a62a23d6ad2f429417919e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "name": "My Bookmarks",
  "version": "1.0",
  "description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.",
  "permissions": [
    "bookmarks", "tabs"
  ],
  "browser_action": {
      "default_title": "My Bookmarks.",
      "default_icon": "icon.png",
      "popup": "popup.html"
  }
}