Thinking Time Tracker

Thinking Time Tracker

This app is a task planning timer for our 360 Thinking Executive Function clinical model (to learn more www.efpractice.com). The…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Thinking Time Tracker",
  "description": "",
  "version": "1.0.3",
  "browser_action": {
    "default_title": "Thinking Time Tracker",
    "default_icon": "./images/logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/logo.png",
    "48": "./images/logo.png",
    "128": "./images/logo.png"
  },
  "background": {
    "scripts": [
      "./js/config.js",
      "./js/core.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/notify.js",
        "./js/jquery.min.js",
        "./js/jquery-ui.min.js",
        "./js/simulate.js",
        "./js/roundslider.js",
        "./js/config.js",
        "./js/core.js",
        "./js/content.js"
      ],
      "css": [
        "./css/notify.css",
        "./css/roundslider.css",
        "./css/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "audio/*.mp3"
  ],
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://cdn.jsdelivr.net https://code.jquery.com; object-src 'self'"
}