Kontxt - The New Social Web

Kontxt - The New Social Web

Save, organize, and share highlights and notes. Follow people to see their content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kontxt - The New Social Web",
  "short_name": "Kontxt",
  "description": "Save, organize, and share highlights and notes. Follow people to see their content.",
  "version": "1.0.13",
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "icons": {
    "16": "kontxt_logo_16.png",
    "48": "kontxt_logo_48.png",
    "128": "kontxt_logo_128.png"
  },
  "background": {
    "scripts": [
      "jquery_2.1.4_min.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "kontxt_logo_48.png",
    "default_title": "Kontxt Extension - The New Social Web",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+K",
        "mac": "MacCtrl+K"
      },
      "description": "Injects Kontxt Script into page."
    }
  }
}