Akia

Akia

This is the Chrome Extension for staff who are using Akia on property. The extension will allow you to embed Akia as a widget on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Akia",
  "version": "1.0.3",
  "manifest_version": 2,
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.protel.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "akia-profile.jpg"
  },
  "web_accessible_resources": [
    "pop.js"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "*://*.protel.net/*"
  ]
}