NoClickjack

NoClickjack

Shows clickjack attempts and displays CryptoColor® indicator when enabled

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NoClickjack",
  "short_name": "NoClickjack",
  "version": "2022.7.6.1",
  "author": "StrikeForce Technologies, Inc.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "96": "Icons/MainIcon.png"
    },
    "default_title": "NoClickjack",
    "default_popup": "popup.html"
  },
  "homepage_url": "https://www.strikeforcetech.com/",
  "web_accessible_resources": [
    {
      "resources": [
        "Icons/MainIcon.png"
      ],
      "matches": [
        "*://*/*",
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "description": "Shows clickjack attempts and displays CryptoColor® indicator when enabled",
  "icons": {
    "96": "Icons/MainIcon.png"
  },
  "permissions": []
}