Clarifier

Clarifier

Bring out the honesty in the Internet! This will replace the phrase "I'm not racist" with "Because I'm racist".

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clarifier",
  "version": "1.1",
  "description": "Bring out the honesty in the Internet! This will replace the phrase \"I'm not racist\" with \"Because I'm racist\".",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "@stephanwozniak",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "src/jquery-1.11.3.min.js",
        "src/far.js",
        "src/script.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>"
  ]
}