TimeTab

TimeTab

A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeTab",
  "version": "3.2",
  "description": "A simple Chrome extension that displays the time, and/or the time of multiple zones, whenever a new tab is opened.",
  "author": "Joshua Britt",
  "homepage_url": "https://github.com/MEDIA76/timetab",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/light/16.png",
    "48": "icons/light/48.png",
    "128": "icons/light/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "38": "icons/light/38.png"
    },
    "default_title": "New Tab"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "offline_enabled": true,
  "manifest_version": 2
}