LinkedIn for Web

LinkedIn for Web

Open the Linkedin website in one click and review the feed like in a mobile app. New notifications are displayed in the icon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_extDEScription__",
  "version": "1.0.1",
  "name": "__MSG_extName__",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "34": "icon-34.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.bundle.js"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "exclude_globs": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "linkDetector.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "default_locale": "en",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}