Dashboard of Bookmarks

Dashboard of Bookmarks

Add a new dashboard of bookmarks and override the Chrome Newtab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en_US",
  "author": "Encore Shao",
  "short_name": "Bookmarks",
  "name": "Dashboard of Bookmarks",
  "description": "Add a new dashboard of bookmarks and override the Chrome Newtab page.",
  "options_page": "src/options/index.html",
  "version": "0.1.5",
  "background": {
    "scripts": [
      "js/libs.js",
      "js/bookmark.js",
      "js/background.js",
      "js/bg.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "downloads",
    "storage",
    "<all_urls>"
  ]
}