Door Insight AI Assistant

Door Insight AI Assistant

Analyze rental properties on the fly with the help of your very own AI Property Analyst

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "116",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzIhpAeYCcdjweCNlIWT05Z14LAR+TXai+4yR6Zrfq/BQC6IAJY/0HVkp1abvi6XStfdA8lm7o33tQke7mCzP6Wa4ZziJi43GUcx56tGAbrNtr0EWjPeLufRIUVYWSEKX3xRuMMmqAUvtLqZsPaZZNHk/cKzR+r/HZYkTmlo5Ehr0rr59eWk1+7NtgVOMu32os3yUyUYRPTPDcrfijTJV8sdqSK7j8dOHyajsw4pQfH5JsE6P3pqFcQlQYPr+DEZenBS8kH5nCNrm5SPt6hgL7WuPS2uzDru50p/O+S93d4fYFwiYfy4qibhORLmKSxHQg+7ddvHWGyw7YugGXFShiwIDAQAB",
  "name": "Door Insight AI Assistant",
  "version": "1.2",
  "description": "Analyze rental properties on the fly with the help of your very own AI Property Analyst",
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_title": "Open Door Insight Assistant"
  },
  "permissions": [
    "sidePanel",
    "tabs",
    "activeTab",
    "scripting",
    "cookies",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*.doorinsight.com/",
    "*://re.codebits.app/"
  ],
  "externally_connectable": {
    "matches": [
      "*://re.codebits.app/*",
      "*://doorinsight.com/*"
    ]
  },
  "icons": {
    "16": "assets/images/icon-16.png",
    "48": "assets/images/icon-48.png",
    "128": "assets/images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.realtor.ca/*",
        "https://www.realtor.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "side_panel": {
    "default_path": "views/sidepanel.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*"
      ],
      "matches": [
        "https://www.realtor.ca/*",
        "https://www.realtor.com/*"
      ]
    }
  ]
}