Technology Profiler by SimplyTrends.co

Technology Profiler by SimplyTrends.co

Reveal what websites are built with.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "TechProfiler",
  "name": "Technology Profiler by SimplyTrends.co",
  "description": "Reveal what websites are built with.",
  "version": "0.0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {},
  "permissions": [
    "scripting",
    "storage",
    "management",
    "webRequest",
    "cookies"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ]
    },
    {
      "matches": [
        "https://*.simplytrends.co/crx/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "simplytrends.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "simplytrends.js",
        "entry.js",
        "windowscript.js",
        "contentscript.js",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}