iAppraise

iAppraise

The easiest way to import appraisals from iAppraise to eraPower.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iAppraise",
  "description": "The easiest way to import appraisals from iAppraise to eraPower.",
  "version": "1.2.4",
  "author": "Kiratech",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "toolkit.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.erapower/base/templates/*",
        "*://erapower.tonywhitegroup.com.au/base/templates/*"
      ],
      "all_frames": true,
      "js": [
        "fuse.js",
        "toolkit.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "data/*.json"
  ],
  "permissions": [
    "storage",
    "notifications",
    "https://www.iappraise.net.au/rest-api/*",
    "https://www.iappraise.net.au/rest-api-auth/*"
  ]
}