Homebase - New Tab Page

Homebase - New Tab Page

A more polished New Tab Page that takes inspiration from Chrome's new tab page. - Save bookmarks, images and notes to each of your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Homebase - New Tab Page",
  "short_name": "New Tab Page",
  "version": "1.1.15",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "browser_action": {
    "default_icon": "images/button.png",
    "default_title": "Add to Homebase",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/",
    "identity",
    "identity.email",
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "icons": {
    "16": "images/button.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"
    }
  }
}