JSON Dark Mode Viewer

JSON Dark Mode Viewer

The extension enables dark mode on all JSON web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "JSON Dark Mode Viewer",
  "description": "The extension enables dark mode on all JSON web pages.",
  "homepage_url": "https://nighteye.app",
  "version": "1.4.4",
  "author": "Promotino Ltd.",
  "icons": {
    "16": "res/icons/16.png",
    "48": "res/icons/48.png",
    "128": "res/icons/128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "_locales/*",
        "js/browser-action/*",
        "viewer/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "offline_enabled": true,
  "action": {
    "default_icon": "res/icons/64.png",
    "default_popup": "html/browser-action/popup.html",
    "default_title": "JSON Dark Mode Viewer"
  },
  "background": {
    "service_worker": "background.js"
  }
}