Read With Kaffae

Read With Kaffae

Remember what you read. Mindful reading made easy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Read With Kaffae",
  "short_name": "Kaffae",
  "version": "0.8.5",
  "description": "Remember what you read. Mindful reading made easy.",
  "permissions": [
    "https://app.kaffae.com/*",
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "history"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./build/content.min.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.kaffae.com/*"
    ]
  },
  "browser_action": {
    "default_title": "Kaffae",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "web_accessible_resources": [
    "oauth_success.js",
    "oauth_success.html"
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2
}