AngelList/500 Startups Connection Highlighter

AngelList/500 Startups Connection Highlighter

This extension will highlight any company and/or names that is associated with a 500 startups company.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AngelList/500 Startups Connection Highlighter",
  "description": "This extension will highlight any company and/or names that is associated with a 500 startups company.",
  "version": "2.0.5",
  "permissions": [
    "http://*.angel.co/*",
    "https://*.angel.co/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://angel.co/*",
        "http://angel.co/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "scripts/*",
    "lib/*"
  ],
  "icons": {
    "32": "icon.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html"
}