Laze

Laze

A relaxing new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Laze",
  "version": "1.0.0",
  "author": "Amos Law",
  "description": "A relaxing new tab page.",
  "icons": {
    "16": "assets/imgs/icon16.png",
    "48": "assets/imgs/icon48.png",
    "128": "assets/imgs/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/imgs/icon16.png"
    }
  },
  "background": {
    "scripts": [
      "assets/js/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "geolocation",
    "storage",
    "http://api.openweathermap.org/*"
  ],
  "web_accessible_resources": [
    "assets/fonts/*"
  ]
}