Social Media / Web Time Tracker

Social Media / Web Time Tracker

Tells you how much time you're spending/wasting on social media and other websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Social Media / Web Time Tracker",
  "short_name": "Social Media Time Tracker",
  "description": "Tells you how much time you're spending/wasting on social media and other websites.",
  "author": "Dave Jacobowitz",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "version": "0.0.9",
  "permissions": [
    "storage",
    "alarms",
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "timekeeper.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "128": "icons/ic2-128.png"
    },
    "default_title": "Configure Web Time Tracker",
    "default_popup": "options.html"
  },
  "icons": {
    "128": "icons/ic2-128.png",
    "200": "icons/ic2-200.png",
    "400": "icons/ic2-400.png"
  },
  "applications": {
    "gecko": {
      "id": "@whttg"
    }
  },
  "web_accessible_resources": [
    "empty_image.png"
  ]
}