PrivacyPolicy Notify(cookies,expiryDate)

a chrome extension that checks for website privacy compliance by ensuring a proper cookie banner and privacy statement.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PrivacyPolicy Notify(cookies,expiryDate)",
  "version": "1.0.0",
  "icons": {
    "16": "assests/Favicon.png",
    "48": "assests/48 Icon.png",
    "128": "assests/128 Icon.png"
  },
  "description": "a chrome extension that checks for website privacy compliance by ensuring a proper cookie banner and privacy statement.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "assests/128 Icon.png",
    "default_popup": "popup.html",
    "default_title": "privacy check"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "bootstrap.min.css"
      ],
      "exclude_matches": [
        "https://www.google.com/search*"
      ],
      "js": [
        "content.js",
        "jquery-3.5.1.min.js",
        "bootstrap.min.js",
        "required.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "*.html",
    "*.png"
  ],
  "content_security_policy": "script-src 'self' 'sha256-/13BBW2yQVtpCsBV7JiO23y7pwEFFUobOzefJ27Nltg='; object-src 'self'"
}