Time Companion

Time Companion

This extension will call you to order on a recurring basis, so that you does not lose sight of the essential goals of your life.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 2,
  "version": "2.0.3",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/icon16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/font-awesome.min.css",
        "library/AWN/style.css"
      ],
      "js": [
        "library/TimeMe/timeme.min.js",
        "library/AWN/index.var.js",
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "library/TimeMe/timeme.min.js",
      "library/Compression/lz-string.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "fonts/*",
    "sounds/*",
    "library/AWN/style.css",
    "todolist/index.html",
    "img/icon128.png"
  ],
  "content_security_policy": "script-src 'self' https://*.sharethis.com; object-src 'self'",
  "permissions": [
    "storage",
    "tabs"
  ]
}