Metal Gear "Patriots" filter

Metal Gear "Patriots" filter

Replaces all instances of the word "Patriot" with the phrase "La-li-lu-le-lo", to simluate the effect of SOP nanomachines.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Metal Gear \"Patriots\" filter",
  "description": "Replaces all instances of the word \"Patriot\" with the phrase \"La-li-lu-le-lo\", to simluate the effect of SOP nanomachines.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "version": "1",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}