paytm stats

paytm stats

A chrome extension to show stats based on paytm purchase history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "paytm stats",
  "version": "0.0.4",
  "manifest_version": 2,
  "description": "A chrome extension to show stats based on paytm purchase history.",
  "icons": {
    "16": "images/16x16.png",
    "128": "images/128x128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "permissions": [
    "storage",
    "*://paytm.com/*",
    "*://*.paytm.com/*"
  ],
  "browser_action": {
    "default_icon": {
      "48": "images/48x48.png"
    },
    "default_title": "paytm stats",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "images/*.png"
  ]
}