Webtoons dark mode

Webtoons dark mode

Changes background color from white to black, when viewing a comic on webtoons.com

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Webtoons dark mode",
  "version": "1.0",
  "description": "Changes background color from white to black",
  "icons": {
    "48": "icons/webtoondarkmode-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.webtoons.com/*viewer*"
      ],
      "js": [
        "webtoondarkmode.js"
      ]
    }
  ]
}