Kora Web Knowledge Capture

Kora Web Knowledge Capture

Use the Kora Web Knowledge Capture extension to save things you see on the web into the knowledge repository of your Kora account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Kora Web Knowledge Capture",
  "version": "0.0.39",
  "description": "Use the Kora Web Knowledge Capture extension to save things you see on the web into the knowledge repository of your Kora account.",
  "manifest_version": 2,
  "icons": {
    "32": "images/koreLogo32.png",
    "128": "images/koreLogo128.png"
  },
  "browser_action": {
    "default_title": "Kora Web Knowledge Capture",
    "default_popup": "popup.html",
    "default_icon": "images/koreLogo.png"
  },
  "background": {
    "scripts": [
      "chromeBack.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "*://*/*",
    "contextMenus",
    "tabs",
    "storage",
    "activeTab",
    "clipboardWrite",
    "clipboardRead"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-1.8.3.min.js",
        "content-script.js",
        "Readability.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "koraframe.html",
    "instruction.html"
  ]
}