Replace strings

Replace strings

It replaces the occurences of 'refugee', 'refugees' to 'human', 'humans'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Replace strings",
  "version": "1.0",
  "description": "It replaces the occurences of 'refugee', 'refugees' to 'human', 'humans'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}