NoGuardian

NoGuardian

Improve the visual appearance of GoGuardian block pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NoGuardian",
  "description": "Improve the visual appearance of GoGuardian block pages",
  "version": "0.0.1",
  "author": "me",
  "manifest_version": 2,
  "permissions": [
    "http://blocked.com-default.ws/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://blocked.com-default.ws/*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "vector1.png",
    "vector2.png"
  ]
}