FindMyInvoice

FindMyInvoice

Use the FindMyInvoice extension to automatically detect and save invoices from your emails.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FindMyInvoice",
  "description": "Use the FindMyInvoice extension to automatically detect and save invoices from your emails.",
  "version": "1.0.05",
  "icons": {
    "48": "images/fmi.png",
    "128": "images/fmi.png"
  },
  "permissions": [
    "https://mail.google.com/",
    "https://inbox.google.com/",
    "http://localhost:3000/*",
    "https://app.findmyinvoice.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/underscore.js",
        "js/inboxsdk.js",
        "js/kefir.js",
        "js/datepicker.min.js",
        "js/moment.js",
        "js/loader.js",
        "js/threadDataManager.js"
      ],
      "css": [
        "css/styles.css",
        "css/datepicker.min.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "templates/*",
    "images/invoice*.png",
    "images/fmi*",
    "images/link.png",
    "images/btn*",
    "images/help.png",
    "images/settings.png",
    "images/teams.png"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}