Drafted Intros

Drafted Intros

Get introductions to people in your network through Drafted

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.5",
  "name": "Drafted Intros",
  "manifest_version": 2,
  "description": "Get introductions to people in your network through Drafted",
  "page_action": {
    "default_title": "Drafted Chrome Extension",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon-16px.png",
    "48": "img/icon-48px.png",
    "128": "img/icon-128px.png"
  },
  "web_accessible_resources": [
    "inject.html",
    "img/logo.svg"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "https://*.drafted.us/*",
    "*://*.linkedin.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}