Fyle - Expense Management

Fyle - Expense Management

Eliminate your expense management woes with Fyle. World's 1st Chrome extension that helps you track and manage expenses from Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fyle - Expense Management",
  "short_name": "Fyle",
  "version": "3.0.0",
  "description": "Eliminate your expense management woes with Fyle. World's 1st Chrome extension that helps you track and manage expenses from Gmail.",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "base.css"
      ],
      "js": [
        "jquery-1.10.2.js",
        "inboxsdk.js",
        "loader.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*",
        "https://*.fylehq.com/*",
        "https://*.fyle.tech/*"
      ],
      "js": [
        "version.js"
      ]
    }
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "*://*.google.com/*",
    "*://*.googleusercontent.com/*",
    "https://*.fylehq.com/*",
    "https://*.fyle.tech/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://*.fylehq.com/*",
        "https://*.fyle.tech/*"
      ]
    }
  ],
  "manifest_version": 3
}