Homepage

Homepage

A chrome extension which provides a nice customizable Homepage. Thanks to this extension you can directly access your shortcuts…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Homepage",
  "version": "0.3",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Options"
  },
  "options_page": "index.html",
  "web_accessible_resources": [
    "/static/css/content.css",
    "/static/media/*"
  ],
  "permissions": [
    "chrome://favicon/",
    "https://i.olsh.me/*",
    "https://api.github.com/*",
    "storage",
    "history",
    "tabs"
  ],
  "commands": {
    "open": {
      "suggested_key": {
        "default": "Ctrl+Q"
      },
      "description": "Open HomePage"
    }
  },
  "icons": {
    "32": "./images/homepage-32.png",
    "64": "./images/homepage-64.png",
    "128": "./images/homepage-128.png"
  }
}