Software eats AI

Software eats AI

Replaces every mention of 'AI' and 'Artificial Intelligence' with 'Software'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Software eats AI",
  "description": "Replaces every mention of 'AI' and 'Artificial Intelligence' with 'Software'",
  "version": "1.0",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}