CMS Detect - What CMS is that site using?

CMS Detect - What CMS is that site using?

As web designers, web developers, SEO specialists or just web enthusiasts, we often find sites and wonder what CMS was used to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CMS Detect - What CMS is that site using?",
  "short_name": "CMS Detect",
  "version": "0.3",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "icon.png",
      "38": "icon38.png"
    },
    "default_popup": "Popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}