Examine source code of Website Theme Manager

Inspect and view changes in Website Theme Manager source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "version": "0.1.8",
  "manifest_version": 3,
  "name": "Website Theme Manager",
  "host_permissions": [
    "*://*/*"
  ],
  "homepage_url": "https://mybrowseraddon.com/website-theme-manager.html",
  "description": "Change your desired website's look! Choose your style from userstyles.org or write your own!",
  "commands": {
    "_execute_action": {}
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "109.0",
      "id": "{1855ccf8-5fda-41f6-ad5a-6b9b53ea10a6}"
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "data/content_script/icons/saved.png",
        "data/content_script/icons/loading.gif"
      ]
    }
  ],
  "background": {
    "scripts": [
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js"
    ]
  },
  "action": {
    "default_title": "Website Theme Manager",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "data/content_script/inject.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "*://*.userstyles.org/*"
      ],
      "js": [
        "data/content_script/userstyles.js"
      ],
      "css": [
        "data/content_script/userstyles.css"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}