WhoKnows

WhoKnows

Cognitive People Search and Analytics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WhoKnows",
  "version": "2.4.1",
  "description": "Cognitive People Search and Analytics",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "page": "bg.html",
    "script": "bg.js"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html",
    "default_title": "WhoKnows (BETA)"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "cookies",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "document_start.min.js"
      ]
    },
    {
      "js": [
        "sidebar.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "frame.html",
    "loading.html"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.linkedin.com/*"
    ]
  }
}