'Ted Cruz' to 'The Zodiac Killer'

'Ted Cruz' to 'The Zodiac Killer'

Changing a common but well known error in Chrome browses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "'Ted Cruz' to 'The Zodiac Killer'",
  "version": "0.1",
  "description": "Changing a common but well known error in Chrome browses.",
  "icons": {
    "16": "images/icon16.jpg",
    "48": "images/icon48.jpg",
    "128": "images/icon128.jpg"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon16.jpg",
      "38": "images/icon48.jpg"
    },
    "default_title": "Click me, please...",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js",
        "jquery-2.1.4.min.js"
      ],
      "run_at": "document_end"
    }
  ]
}