Reverse Racism

Reverse Racism

Use this plugin to see what a seemingly harmless attack on white people would look like if used towards any other race.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reverse Racism",
  "description": "Use this plugin to see what a seemingly harmless attack on white people would look like if used towards any other race.",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "32": "on.png"
    },
    "default_title": "icon"
  },
  "icons": {
    "16": "on_16.png",
    "48": "on_48.png",
    "128": "on.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js"
      ],
      "run_at": "document_end"
    }
  ]
}