Lander - New Tab Page

Lander - New Tab Page

Replace your stock new tab / landing page with one meant for power users. - Bookmarks page with tabs (each tab can have it's own…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lander - New Tab Page",
  "version": "2.4.0",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "page_action": {
    "default_icon": "images/bookmark.png",
    "default_title": "Add to Lander",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/",
    "identity",
    "identity.email",
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "icons": {
    "16": "images/bookmark.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "commands": {
    "search_rt": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "Find on Rotten Tomatoes"
    },
    "search_amazon": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Find on Amazon"
    },
    "search_google": {
      "suggested_key": {
        "default": "Alt+G"
      },
      "description": "Find on Google"
    },
    "search_wikipedia": {
      "suggested_key": {
        "default": "Alt+W"
      },
      "description": "Find on Wikipedia"
    }
  }
}