Climate chicken

Climate chicken

Replace the hyperbolic, fanatic lanaguage of climate changed being snuck into the media, with comical replacements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Climate chicken",
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "description": "Replace the hyperbolic, fanatic lanaguage of climate changed being snuck into the media, with comical replacements",
  "version": "1.1",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "page.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}