Tint Timer

Tint Timer

Tint Timer is a tint-based, fully immersive time management tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tint Timer",
  "description": "Tint Timer is a tint-based, fully immersive time management tool.",
  "version": "1.0.3",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/common_functions.js",
        "scripts/content/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "scripts/common_functions.js",
      "scripts/background/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "scripts/popup/popup.html",
    "default_title": "Edit the sessions and settings here!"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "alarms"
  ],
  "omnibox": {
    "keyword": "tint"
  }
}