ConsultantAlerts Chrome Plugin - Lite

ConsultantAlerts Chrome Plugin - Lite

This plugin allows LLR users to see available inventory on Build

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ConsultantAlerts Chrome Plugin - Lite",
  "version": "1.0.7",
  "manifest_version": 2,
  "description": "This plugin allows LLR users to see available inventory on Build",
  "homepage_url": "http://www.consultantalerts.com",
  "icons": {
    "16": "icons/default16.png",
    "48": "icons/default48.png",
    "128": "icons/default128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/moment.js",
      "js/jquery/jquery.min.js",
      "js/store.js",
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/default19.png",
    "default_title": "Consultant Alerts Chrome Plugin - Lite"
  },
  "permissions": [
    "https://build.mylularoe.com/store/products",
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://build.mylularoe.com/store/products"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    }
  ]
}