CREA Board Support

CREA Board Support

Install the Google Chrome extension to quickly view the Data History of listings, agents and offices on REALTOR.ca. This extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CREA Board Support",
  "version": "3.2",
  "description": "",
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_title": "CREA Board Support"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.realtor.ca/*"
      ],
      "js": [
        "jquery-1.10.2.min.js",
        "inject.js"
      ],
      "css": [
        "datahistory.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "data/fields.json"
      ],
      "matches": [
        "*://*.realtor.ca/*"
      ]
    }
  ]
}