You Mean Racist?

You Mean Racist?

Replace the phrase 'racially charged' with the more oft-accurate term '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": "You Mean Racist?",
  "description": "Replace the phrase 'racially charged' with the more oft-accurate term 'racist.'",
  "version": "1.3",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}