Productivity Tracker

Productivity Tracker

Count your clicks and keystrokes in chrome so you can view your productivity over time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "/src/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "/src/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/src/jquery-3.1.1.js",
        "/src/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Count your clicks and keystrokes in chrome so you can view your productivity over time",
  "icons": {
    "16": "PTLogo16x16.png",
    "48": "PTLogo48x48.png",
    "128": "PTLogo128x128.png"
  },
  "manifest_version": 2,
  "name": "Productivity Tracker",
  "offline_enabled": true,
  "permissions": [
    "<all_urls>",
    "storage",
    "<all_urls>"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.54"
}