CSGO.exchange Auto retrieve

CSGO.exchange Auto retrieve

Auto retrieve

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CSGO.exchange Auto retrieve",
  "author": "Arthur.Lee",
  "version": "1.5",
  "description": "Auto retrieve",
  "icons": {
    "128": "action.png"
  },
  "permissions": [
    "tabs",
    "notifications",
    "http://csgo.exchange/"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "logic.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://csgo.exchange/*"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Auto retrieve",
    "default_icon": "action.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "logic.js"
  ]
}