Classic share for LinkedIn

Classic share for LinkedIn

Browser extension that allows one to share using the classic LinkedIn interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Classic share for LinkedIn",
  "description": "Browser extension that allows the user to share the page using LinkedIn.",
  "version": "0.0.4resigned1",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "icon32.png"
  },
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{c7adf0b3-f819-42de-8d4c-d58248f0fe5f}"
    }
  }
}