Receipt & Invoice Capture, Match, Categorize

Receipt & Invoice Capture, Match, Categorize

Automate expense management by snapping receipts & invoices online, then auto-match with transactions on any card or bank account!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Receipt & Invoice Capture, Match, Categorize",
  "description": "Automate expense management by snapping receipts & invoices online, then auto-match with transactions on any card or bank account!",
  "version": "1.2.2",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Clyr",
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js",
        "contentCss.js"
      ]
    }
  ],
  "commands": {
    "open-invoice": {
      "suggested_key": {
        "default": "Ctrl+I",
        "mac": "Command+I"
      },
      "description": "Capture screenshot which will be linked to an invoice"
    }
  }
}