P2P Interest calculator

P2P Interest calculator

Provide loan amount and get approximate interest.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "P2P Interest calculator",
  "version": "0.0.0.5",
  "description": "Provide loan amount and get approximate interest.",
  "permissions": [
    "browsingData"
  ],
  "icons": {
    "48": "images/icon48.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://www.finbee.lt/*",
        "https://www.finbee.lt/*",
        "https://p2p.finbee.lt/*",
        "http://p2p.finbee.lt/*"
      ],
      "js": [
        "scripts/jquery-2.1.4.min.js",
        "scripts/calc.min.js",
        "scripts/process.min.js"
      ]
    }
  ]
}