Craft for Google Chrome™

Craft for Google Chrome™

A simplified way to access data on companies as you browse the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Craft for Google Chrome™",
  "description": "A simplified way to access data on companies as you browse the web",
  "version": "1.0.5",
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/static/css/app.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/css/content.css"
  ],
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  }
}