Programming to Googling StackOverflow

Programming to Googling StackOverflow

Replaces the text 'programming' with 'Googling StackOverflow' (plus variations.) Inspired by: http://bit.ly/1HF3QEe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Programming to Googling StackOverflow",
  "version": "1.2",
  "description": "Replaces the text 'programming' with 'Googling StackOverflow' (plus variations.) Inspired by: http://bit.ly/1HF3QEe",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}