1 Wire

1 Wire

CRM Integration Powered by 1 Wire

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "1 Wire",
  "description": "CRM Integration Powered by 1 Wire",
  "short_name": "1 Wire",
  "version": "0.17.04",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "management",
    "notifications",
    "contextMenus",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon.png"
    }
  },
  "content_security_policy": "script-src 'self' https://maxcdn.bootstrapcdn.com; object-src 'self'",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/socket.io.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*.png",
    "html/login.html",
    "html/dashboard.html"
  ],
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png"
  }
}