GLARE

GLARE

The world's stupidest extension. Changes all instances of the letter R to the letter P.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GLARE",
  "version": "1.0",
  "description": "The world's stupidest extension. Changes all instances of the letter R to the letter P.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "seagull www.SEAGULL.io",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*/search?*"
      ],
      "js": [
        "GLARE.user.js"
      ]
    }
  ],
  "converted_from_user_script": "true"
}