Harvest Language Support

Harvest Language Support

Simple language support for Harvest (harvestapp.com)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Harvest Language Support",
  "short_name": "Harvest Languages",
  "author": "Orestes Carracedo (@orestesCA https://orestes.io)",
  "version": "3.5.1",
  "manifest_version": 2,
  "description": "Simple language support for Harvest (harvestapp.com)",
  "web_accessible_resources": [
    "*.json",
    "*.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.harvestapp.com/invoices/*"
      ],
      "css": [
        "content/styles/style.css"
      ],
      "js": [
        "vendor/lodash.core.min.js",
        "vendor/zepto.min.js",
        "vendor/zepto.ajax.js",
        "harvest-languages.js"
      ]
    },
    {
      "matches": [
        "https://*.harvestapp.com/estimates/*"
      ],
      "css": [
        "content/styles/style.css"
      ],
      "js": [
        "vendor/lodash.core.min.js",
        "vendor/zepto.min.js",
        "vendor/zepto.ajax.js",
        "harvest-languages.js"
      ]
    }
  ],
  "icons": {
    "16": "content/images/harvest-languages-16.png",
    "48": "content/images/harvest-languages-48.png",
    "128": "content/images/harvest-languages-128.png"
  }
}