Dear White People Word Replacer

Dear White People Word Replacer

Need a safe space? This extension changes all mentions of “Dear White People” online to “Dear ALL People.”

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Dear White People Word Replacer",
  "version": "1.2",
  "description": "Need a safe space? This extension changes all mentions of “Dear White People” online to “Dear ALL People.”",
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/dwp16.png",
      "32": "images/dwp32.png",
      "48": "images/dwp48.png",
      "64": "images/dwp64.png",
      "128": "images/dwp128.png"
    },
    "default_title": "Dear White People"
  },
  "icons": {
    "16": "images/dwp16.png",
    "32": "images/dwp32.png",
    "48": "images/dwp48.png",
    "64": "images/dwp64.png",
    "128": "images/dwp128.png"
  },
  "permissions": [
    "http://*.google.com/",
    "http://*.com/",
    "tabs"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "manifest_version": 2
}