LiveGamers.pl

LiveGamers.pl

Rozszerzenie usprawniające działanie serwisu LiveGamers.pl.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.3",
  "name": "LiveGamers.pl",
  "description": "Rozszerzenie usprawniające działanie serwisu LiveGamers.pl.",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "*://*.livegamers.pl/*",
    "*://*.fbcdn.net/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.livegamers.pl/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}