The Other Kim

The Other Kim

Replaces 'Kardashian' with 'Jong Un' in browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Other Kim",
  "version": "0.1",
  "description": "Replaces 'Kardashian' with 'Jong Un' in browser.",
  "icons": {
    "48": "smallicon.png",
    "128": "bigicon.png"
  },
  "permissions": [
    "tabs",
    "http://*/*, https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "kardashian.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}