Productivity+

Productivity+

Tired of CrappyUI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Productivity+",
  "version": "7.0.8",
  "description": "Tired of CrappyUI",
  "options_page": "index.html",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "jq.js"
    ]
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "Fill In Your Preferences"
  },
  "content_scripts": [
    {
      "matches": [
        "http://172.18.9.55:8084/prefent/servlet/prefent.PreferenceEntry"
      ],
      "js": [
        "jq.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "chrome_url_overrides": {
    "newtab": "index.html"
  }
}