AnotherTab - New Tab page

Uses New Tab page to show bookmarks folder (Bookmarks Bar by default) for quick access to its items and allows to manage it
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AnotherTab - New Tab page",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_main_description__",
  "version": "3.6",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "storage": {
    "managed_schema": "init.json"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "storage",
    "management",
    "search",
    "https://www.google.com/s2/favicons",
    "chrome://favicon/"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "scripts": []
  }
}