top dark

simply make the web page look dark
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "description": "simply make the web page look dark",
  "name": "top dark",
  "version": "0.1",
  "action": {
    "default_icon": "icons.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icons.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}