Cool Kids

Cool Kids

Add this to your browser and replace all instances of 'millenials' with 'cool kids'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cool Kids",
  "description": "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.",
  "version": "1.0",
  "permissions": [
    "http://*.google.com/",
    "http://*.com/",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Cool Kids",
    "default_popup": "popup.html"
  }
}