Simple Invoice

Simple Invoice

This application helps shop keepers for their routine billing work to print invoice

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Invoice",
  "description": "This application helps shop keepers for their routine billing work to print invoice",
  "version": "1.1.3",
  "author": "Collonmade",
  "short_name": "Simple Invoice",
  "browser_action": {
    "default_icon": "icon_128x128.png",
    "default_popup": "temp.html"
  },
  "version_name": "V1.1.3",
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "jspdf.min.js",
        "jquery-ui.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "http://query.yahooapis.com/v1/public/*",
        "http://translate.google.com/translate_a/element.js/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}