Pomodoro Timer

Pomodoro Timer

A new-tab page that helps you focus on completing your work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pomodoro Timer",
  "version": "0.0.0.3",
  "description": "A new-tab page that helps you focus on completing your work.",
  "icons": {
    "16": "images/streak16.png",
    "32": "images/streak32.png",
    "48": "images/streak48.png",
    "128": "images/streak128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/streak16.png",
      "32": "images/streak32.png",
      "48": "images/streak48.png",
      "128": "images/streak128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newTab.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "incognito": "spanning",
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "storage"
  ]
}