Nifty: Tasks, Chat, Docs, Time

Nifty: Tasks, Chat, Docs, Time

Nifty is a new wave productivity app to manage tasks, track time, collaborate on docs, and chat with your team -- all in one place.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nifty: Tasks, Chat, Docs, Time",
  "description": "Nifty is a new wave productivity app to manage tasks, track time, collaborate on docs, and chat with your team -- all in one place.",
  "version": "1.3",
  "manifest_version": 3,
  "action": {
    "default_title": "Open Nifty"
  },
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/64x64.png",
    "128": "icons/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "cookies",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://nifty.pm/",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "externally_connectable": {
    "matches": [
      "*://*.nifty.pm/*",
      "*://*.niftyuat.com/*",
      "*://*.niftyqa.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "index.html"
      ]
    }
  ]
}