McCullough Development Yardi Extender

McCullough Development Yardi Extender

This extension is used to extend the functionality of Yardi Voyager to suit the needs of McCullough Development users

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "McCullough Development Yardi Extender",
  "version": "1.0.1.0",
  "manifest_version": 2,
  "description": "This extension is used to extend the functionality of Yardi Voyager to suit the needs of McCullough Development users",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "options_page": "src/options/index.html",
  "page_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "McCullough Development Yardi Extender",
    "default_popup": "src/page_action/page_action.html"
  },
  "permissions": [
    "contentSettings",
    "https://www.yardiaspnc7.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://www.yardiaspnc7.com/*"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "all_frames": true
    }
  ]
}