Daily Motto on new tab

Daily Motto on new tab

Display an interesting motto every time a new tab is opened.It an replacement of browser's default function, but configureable!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": " Daily Motto on new tab",
  "version": "1.1.2",
  "description": "Display an interesting motto every time a new tab is opened.It an replacement of browser's default function, but configureable!",
  "author": "[email protected]",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "optional_permissions": [
    "tabs"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}