Mikado - Drive OKR with smart todos

Mikado - Drive OKR with smart todos

Stay focused, effortlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mikado - Drive OKR with smart todos",
  "description": "Stay focused, effortlessly.",
  "version": "0.3.4",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_title": "Todo list",
    "default_icon": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://main.dwpb8as7hlq5t.amplifyapp.com/login",
        "https://main.dwpb8as7hlq5t.amplifyapp.com/login-desktop",
        "https://accounts.google.com/o/oauth2/*"
      ],
      "css": [
        "/static/css/content.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'sha256-LpqigysqbABiIIFR4bRc9ZTLWUdqEfwzc3Qsiw0CyVI='; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "https://main.dwpb8as7hlq5t.amplifyapp.com/*"
    ]
  },
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "alarms",
    "<all_urls>"
  ]
}