Examine source code of OP.GG Darkmode

Inspect and view changes in OP.GG Darkmode source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "OP.GG Darkmode",
  "version": "1.3.4",
  "description": "Enable darkmode on op.gg",
  "icons": {
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png",
    "256": "icons/icon_256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.op.gg/*"
      ],
      "js": [
        "darkness.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://op.gg/*",
    "*://www.op.gg/*",
    "*://euw.op.gg/*",
    "*://eune.op.gg/*",
    "*://lan.op.gg/*",
    "*://jp.op.gg/*",
    "*://oce.op.gg/*",
    "*://ru.op.gg/*",
    "*://na.op.gg/*",
    "*://br.op.gg/*",
    "*://tr.op.gg/*",
    "*://las.op.gg/*",
    "*://sg.op.gg/*",
    "*://id.op.gg/*",
    "*://ph.op.gg/*",
    "*://tw.op.gg/*",
    "*://vn.op.gg/*",
    "*://th.op.gg/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}