Stanfurd

Stanfurd

Replace Stanford with Stanfurd.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stanfurd",
  "version": "1.2",
  "description": "Replace Stanford with Stanfurd.",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "replaceText.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://www.stanford.edu/*"
      ],
      "js": [
        "replaceImage.js"
      ],
      "run_at": "document_end"
    }
  ]
}