Hourly Time

Hourly Time

Record the time you spend working on web items

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Hourly Time",
  "version": "0.0.0.2",
  "manifest_version": 2,
  "description": "Record the time you spend working on web items",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "/dist/app.bundle.js",
      "/dist/background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "24": "images/icon_24.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "96": "images/icon_96.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Hourly helps you keep track of your time on the web.",
    "default_popup": "app.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "/dist/content-script.bundle.js"
      ],
      "css": [
        "/styles/content-script.css"
      ]
    }
  ],
  "icons": {
    "16": "images/icon_16.png",
    "24": "images/icon_24.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "96": "images/icon_96.png",
    "128": "images/icon_128.png"
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}