LinkedIn notes

LinkedIn notes

LinkedIn® Notes is a Chrome Extension for the New Tab. This extension changes your existing new tab page and provides the features…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LinkedIn notes",
  "version": "1.0.7",
  "browser_action": {
    "default_icon": "favicon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png"
  },
  "permissions": [
    "storage",
    "*://*.linkedin.com/*",
    "*://linkedin.com/*",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "linkedIn.html",
    "bg.svg"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  }
}