Time Spy

Time Spy

TimeSpy is an online productivity tool that allows users to monitor how their time online is allocated and view accurate data…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Time Spy",
  "version": "0.1",
  "background": {
    "scripts": [
      "assets/javascripts/moment.min.js",
      "quotes.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/javascripts/jquery-3.1.0.js",
        "popup.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "assets/images/spy_icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "activeTab",
    "notifications"
  ]
}