CsgoBLOCKS modifications

CsgoBLOCKS modifications

Automatically win Auto-Giveaways, View BlockSelector winner quickly, View BlockFaces winner quickly, View any user's profile

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "author": "Tom",
  "version": "4",
  "icons": {
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "background": {
    "page": "/pages/background.html",
    "persistent": true
  },
  "options_ui": {
    "page": "/pages/options.html",
    "chrome_style": true,
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://csgoblocks.com/*"
      ],
      "js": [
        "/js/inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "64": "icon64.png",
      "128": "icon128.png"
    },
    "default_title": "CSGOBlocks MODS",
    "default_popup": "/pages/popup.html"
  },
  "web_accessible_resources": [
    "/js/page.js",
    "/css/fs.css",
    "/css/page.css"
  ],
  "externally_connectable": {
    "matches": [
      "*://csgoblocks.com/*"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' blob: chrome-extension-resource: https://www.googletagmanager.com https://www.google-analytics.com ; object-src 'self'",
  "permissions": [
    "contextMenus",
    "storage"
  ]
}