UProc for LinkedIn

UProc for LinkedIn

This extension allows to autocomplete LinkedIn profiles and save to external lists, making your life easier.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/favicon_48.png",
    "default_popup": "templates/settings.html",
    "default_title": "UProc for LinkedIn"
  },
  "icons": {
    "16": "img/favicon_16.png",
    "48": "img/favicon_48.png",
    "128": "img/favicon_128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ],
      "matches": [
        "*://*.linkedin.com/in/*",
        "*://*.linkedin.com/sales/*",
        "*://*.linkedin.com/recruiter/profile/*",
        "*://*.linkedin.com/search/results/people/*",
        "*://*.linkedin.com/search/results/all/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "templates/container.html",
    "css/container.css",
    "json/linkedin_keys.json"
  ],
  "description": "This extension allows to autocomplete LinkedIn profiles and save to external lists, making your life easier.",
  "content_security_policy": "script-src 'self' https://*.google-analytics.com https://*.mxpnl.com https://*.googletagmanager.com https://*.facebook.net https://*.googletagmanager.com https://*.googleadservices.com; object-src 'self'",
  "manifest_version": 2,
  "name": "UProc for LinkedIn",
  "short_name": "uproc4li",
  "offline_enabled": false,
  "permissions": [
    "*://*.uproc.io/*",
    "*://*.linkedin.com/in/*",
    "*://*.linkedin.com/recruiter/profile/*",
    "*://*.linkedin.com/sales/*",
    "*://*.linkedin.com/search/results/people/*",
    "*://*.linkedin.com/search/results/all/*",
    "webNavigation",
    "storage"
  ],
  "version": "1.0.60"
}