Friday: Digital HQ for work

Friday: Digital HQ for work

Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Friday: Digital HQ for work",
  "description": "Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.",
  "version": "3.0.0",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "https://api-v2.friday.app/",
    "https://my.friday.app/",
    "tabs",
    "contextMenus",
    "search"
  ],
  "browser_action": {
    "default_icon": "icon_48.png"
  },
  "icons": {
    "16": "icon_48.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": "script-src 'self' 'sha256-bFQrehPI5xMgioONEKp8npMomRWtql4COAoDM2yCcwY=' 'sha256-St7Ip29uyL8LtYkuf4NDFhzlDrF+0SeMW4Ilhv/0lIU='; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://my.friday.app/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://my.friday.app/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "index.html"
  ]
}