GetClearing

GetClearing

This extension is used with GetClearing.co, a solution for property managers to track their cashflow and automate bookkeeping.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GetClearing",
  "version": "3.3.1",
  "manifest_version": 3,
  "description": "This extension is used with GetClearing.co, a solution for property managers to track their cashflow and automate bookkeeping.",
  "icons": {
    "16": "assets/logo.png",
    "32": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "action": {
    "default_icon": "assets/logo.png",
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "content_scripts": [
    {
      "css": [
        "css/css.css"
      ],
      "js": [
        "lib/toastify.js",
        "contents/airbnb.js"
      ],
      "matches": [
        "https://*.airbnb.com/users/transaction_history*",
        "https://*.airbnb.ca/users/transaction_history*"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "lib/izitoast.js",
        "lib/wcl.js",
        "contents/screener.js"
      ],
      "css": [
        "lib/iziToast.css"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "cookies",
    "storage",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "https://*.airbnb.com/*",
    "https://*.airbnb.ca/*",
    "https://airbnb-payments.s3.amazonaws.com/*",
    "https://*.vrbo.com/*",
    "https://cas.homeaway.com/auth/vrbo/login*"
  ]
}