Improving the Paydirt Time Tracker

Improving the Paydirt Time Tracker

This extension makes Paydirt's Time Tracker sidebar easier to navigate, especially if you have a lot of active projects.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "Paydirt Plus",
  "description": "__MSG_appDesc__",
  "version": "0.2.0.0",
  "manifest_version": 2,
  "homepage_url": "http://www.ermert.es",
  "icons": {
    "16": "icons/icon_16x16.png",
    "19": "icons/icon_19x19.png",
    "32": "icons/icon_32x32.png",
    "48": "icons/icon_48x48.png",
    "64": "icons/icon_64x64.png",
    "128": "icons/icon_128x128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://paydirtapp.com/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://paydirtapp.com/*"
      ],
      "js": [
        "src/inject/inject.js",
        "src/inject/jquery-2.1.1.min.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}