Examine source code of Simply Code Beautify

Inspect and view changes in Simply Code Beautify 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
{
  "manifest_version": 3,
  "name": "Simply Code Beautify",
  "author": "httzip",
  "description": "Beautify your js,css files",
  "version": "0.0.2",
  "background": {
    "service_worker": "/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ],
  "icons": {
    "16": "/logo/logo16.png",
    "48": "/logo/logo48.png",
    "128": "/logo/logo128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "activeTab",
    "nativeMessaging",
    "storage"
  ],
  "action": {},
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "css/*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "vendor/*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "vendor/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}