Chatbots.org forum popup hider

Chatbots.org forum popup hider

Suppresses a persistent popup on the chatbots.org forum.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chatbots.org forum popup hider",
  "version": "1.0.3",
  "description": "Suppresses a persistent popup on the chatbots.org forum.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chatbots.org/ai_zone*"
      ],
      "js": [
        "hidepopup.js"
      ],
      "run_at": "document_end"
    }
  ]
}