The Bigman Plugman

The Bigman Plugman

Replaces any instance of please,plz,pleaze,plox,plx,plis,pliz,pls into plock

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Bigman Plugman",
  "description": "Replaces any instance of please,plz,pleaze,plox,plx,plis,pliz,pls into plock",
  "version": "1.1",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "icon.png",
    "icons": {
      "128": "icon.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}