ServiceNow Dark Mode - NightWolf

ServiceNow Dark Mode - NightWolf

Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "ServiceNow Dark Mode - NightWolf",
  "short_name": "SNOW Dark Mode",
  "version": "2.2",
  "description": "Dark Mode for ServiceNow, Reduce eye strain when using dark mode for ServiceNow tools and services.",
  "manifest_version": 3,
  "author": "Vivek Verma",
  "icons": {
    "16": "./assets/icon16.png",
    "48": "./assets/icon48.png",
    "128": "./assets/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.service-now.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "nightwolf_navigator.css",
        "nightwolf_main.css",
        "nightwolf_stream_reader.css"
      ],
      "matches": [
        "*://*.service-now.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./assets/icon16.png",
      "48": "./assets/icon48.png",
      "128": "./assets/icon128.png"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}