Daily Motivation With Chrome

Daily Motivation With Chrome

Start every search with motivation. This extention presents you with a motivational quote everytime you open a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "ChromeExtensionSource/Logo128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "description": "Start every search with motivation. This extention presents you with a motivational quote everytime you open a new tab.",
  "icons": {
    "16": "ChromeExtensionSource/Logo16.png",
    "48": "ChromeExtensionSource/Logo48.png",
    "128": "ChromeExtensionSource/Logo128.png"
  },
  "manifest_version": 2,
  "name": "Daily Motivation With Chrome",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "short_name": "Daily Motivation",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.0"
}