Worktime Progressbar & Timer

Worktime Progressbar & Timer

Timer with a Progress Bar that logs Working and Break times. Has autostart/auto idle break options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Worktime Progressbar & Timer",
  "version": "1.6",
  "description": "Timer with a Progress Bar that logs Working and Break times. Has autostart/auto idle break options.",
  "permissions": [
    "tabs",
    "idle",
    "storage",
    "notifications"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/WPB_icon16.png",
      "32": "images/WPB_icon32.png",
      "48": "images/WPB_icon48.png",
      "128": "images/WPB_icon128.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+E"
      },
      "description": "Open WorkProgressBar Extension popup"
    },
    "toggle_timer": {
      "suggested_key": {
        "default": "Alt+Shift+W"
      },
      "description": "Start/Pause the WorkProgressBar Timer"
    },
    "stop_timer": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Stop the WorkProgressBar Timer"
    },
    "trigger_toggleView": {
      "suggested_key": {
        "default": "Alt+Shift+V"
      },
      "description": "Show/Hide the WorkProgressBar View"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/workPBstyle.css"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/workPBcontent.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/WPB_icon16.png",
    "32": "images/WPB_icon32.png",
    "48": "images/WPB_icon48.png",
    "128": "images/WPB_icon128.png"
  },
  "manifest_version": 2
}