My Friend Catherine

My Friend Catherine

Replaces the phrase 'my cat' with 'my friend Catherine'. Inspired by XKCD http://xkcd.com/1689/

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Friend Catherine",
  "description": "Replaces the phrase 'my cat' with 'my friend Catherine'. Inspired by XKCD http://xkcd.com/1689/",
  "version": "1.3",
  "icons": {
    "16": "images/cat-cupid-love-icon.png",
    "48": "images/cat-cupid-love-icon.png",
    "128": "images/cat-cupid-love-icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}