Homeboard (Speed Dial)

Homeboard (Speed Dial)

Homeboard for Chrome – Launch, Share and Discover your favorite websites, from one place.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Homeboard (Speed Dial)",
  "short_name": "Homeboard",
  "description": "Homeboard for Chrome – Launch, Share and Discover your favorite websites, from one place.",
  "version": "1.1.4",
  "icons": {
    "16": "h_16px.png",
    "48": "h_48px.png",
    "128": "h_128px.png"
  },
  "chrome_url_overrides": {
    "newtab": "redirect.html"
  },
  "permissions": [
    "tabs",
    "http://homeboard.me/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://homeboard.me/*"
      ],
      "js": [
        "embed.js"
      ]
    }
  ],
  "background": {
    "page": "redirect.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/h_19px.png",
      "38": "images/h_38px.png"
    },
    "default_title": "Homeboard",
    "default_popup": "popup.html"
  }
}