Life Clock For New Tab

Life Clock For New Tab

This extension tells you the actual current hours of your life with random quotes and image every time you open a new blank tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Life Clock For New Tab",
  "description": "This extension tells you the actual current hours of your life with random quotes and image every time you open a new blank tab.",
  "version": "1.10",
  "content_security_policy": "script-src 'self' https://api.flickr.com https://*.flickr.com https://andruxnet-random-famous-quotes.p.mashape.com/ ; object-src 'self'",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "jquery-3.2.0.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.2.0.min.js",
        "moment.min.js",
        "content.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "content.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ]
}