Lookup Company

Lookup Company

One-click Crunchbase organization discovery from anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2.0",
  "manifest_version": 2,
  "name": "Lookup Company",
  "short_name": "Lookup Company",
  "description": "One-click Crunchbase organization discovery from anywhere.",
  "background": {
    "persistent": false,
    "scripts": [
      "./scripts/main.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.crunchbase.com; object-src 'self'",
  "icons": {
    "16": "./static/img/chrome-eye-icon--light-16.png",
    "48": "./static/img/chrome-eye-icon--light-48.png",
    "64": "./static/img/chrome-eye-icon--light-64.png",
    "128": "./static/img/chrome-eye-icon--light-128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "./static/img/chrome-eye-icon--light-16.png",
      "48": "./static/img/chrome-eye-icon--light-48.png",
      "64": "./static/img/chrome-eye-icon--light-64.png",
      "128": "./static/img/chrome-eye-icon--light-128.png"
    },
    "default_popup": "./static/popup.html"
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://www.crunchbase.com/"
  ]
}