WoT Player Statistic

WoT Player Statistic

This extension provides player statistic right on the official user profile page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WoT Player Statistic",
  "description": "This extension provides player statistic right on the official user profile page",
  "version": "1.0",
  "author": "Eugene Tkachenko",
  "short_name": "WoT Player Statistic",
  "permissions": [
    "notifications",
    "storage",
    "tabs",
    "alarms",
    "webNavigation",
    "https://worldoftanks.ru/*"
  ],
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "matches": [
        "https://worldoftanks.ru/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://worldoftanks.ru; object-src 'self'",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "assets/css/style.css",
    "assets/css/*.css",
    "injection_files/*_injector.js",
    "jquery.modal.js"
  ]
}