Minterapp Time Tracker

Minterapp Time Tracker

This extension helps to track time to increase your productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Minterapp Time Tracker",
  "description": "This extension helps to track time to increase your productivity",
  "version": "0.0.1.9",
  "icons": {
    "128": "images/mi_light_green_logo.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "webNavigation"
  ],
  "short_name": "Minterapp",
  "content_scripts": [
    {
      "matches": [
        "https://3.basecamp.com/*",
        "https://basecamp.com/*",
        "https://app.asana.com/*",
        "*://trello.com/*"
      ],
      "css": [
        "bootstrap.css"
      ],
      "all_frames": true,
      "js": [
        "jquery-2.2.4.js",
        "jquery.turbolinks.js",
        "popup.js",
        "content.js",
        "bootstrap.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.minterapp.com/*",
      "*://3.basecamp.com/*",
      "*://trello.com/*"
    ]
  },
  "web_accessible_resources": [
    "images/*"
  ]
}