HourGlass

HourGlass

Keep track of your productivity on Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HourGlass",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "Keep track of your productivity on Chrome.",
  "homepage_url": "https://chrome.google.com/webstore/detail/hourglass/jffolfflgaanihjafibkhkpgoaijlcee",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://*.firebase.com https://*.google.com https://www.googletagmanager.com; object-src 'self'",
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "options_page": "src/options_custom/index.html",
  "browser_action": {
    "default_icon": "icons/icon_48.png",
    "default_title": "HourGlass - Productivity Tracker",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "web_accessible_resources": [
    "icons/close-24px.svg",
    "icons/icon_128.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "./js/jquery.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}