Recap.work

Recap.work

Summarizes LinkedIn profiles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "Recap",
  "name": "Recap.work",
  "version": "3.64",
  "icons": {
    "16": "recap16.png",
    "48": "recap48.png",
    "128": "recap128.png"
  },
  "description": "Summarizes LinkedIn profiles",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "update_url": "http://kza.herokuapp.com/xml/updates.xml",
      "js": [
        "jquery-3.1.0.min.js",
        "curry.js",
        "utils.js",
        "content.js"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "web_accessible_resources": [
    "*.png",
    "social_icons/*.png",
    "popup_error.html",
    "*.svg",
    "*.gif",
    "popup_no_login.html",
    "popup_no_recaps.html",
    "popup.html"
  ]
}