Dark Mode for HubSpot

Dark Mode for HubSpot

Take care of your eyes day and night using dark theme for HubSpot tools and services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description_short__",
  "version": "3.0.31",
  "author": "__MSG_extension_author_name__",
  "homepage_url": "https://growthdot.com",
  "icons": {
    "48": "icons/icon.png",
    "96": "icons/[email protected]"
  },
  "action": {
    "default_title": "__MSG_extension_default_title__",
    "default_icon": {
      "19": "icons/icon19.png",
      "20": "icons/icon20.png",
      "38": "icons/icon38.png",
      "48": "icons/icon.png",
      "96": "icons/[email protected]"
    },
    "default_popup": "code/settings/app.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.google.com/*",
        "https://*.youtube.com/*",
        "https://*.facebook.com/*",
        "https://twitter.com/*",
        "https://*.linkedin.com/*",
        "https://slack.com/*",
        "https://*.microsoft.com/*",
        "file:///*"
      ],
      "js": [
        "code/client/client.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "webNavigation"
  ],
  "background": {
    "service_worker": "code/background.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}