ABC Extention

ABC Extention

This extension will be used for site....

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ABC Extention",
  "description": "This extension will be used for site....",
  "version": "1.3",
  "content_scripts": [
    {
      "matches": [
        "http://winforyou.eu/"
      ],
      "js": [
        "popup.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}