Cool Kids

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

What is Cool Kids?

Cool Kids is a Chrome extension developed by clare o'neill, and its main feature is "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".

Extension Screenshots

screenshot

Download Cool Kids Extension CRX File

Download Cool Kids extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Problem: I was getting sick of reading think pieces about how being born in '91 makes me an inherently lazy, entitled piece of shit. 

Solution: I made this Chrome extension to replace all instances of "millennial(s)" with "cool kid(s)." 

Credit
Inspired by and using code from Drumpfinator Chrome (https://chrome.google.com/webstore/detail/drumpfinator/hcimhbfpiofdihhdnofbdlhjcmjopilp).
Repurposed with ♥ by a cool kid.                    

Extension Basic Information

Name Cool Kids Cool Kids
ID ogfgpkaggjlmfbapfkaahaopodjeeael
Official URL https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael
Description Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
File Size 22.63 KB
Installation Count 53
Current Version 1.0
Last Updated 2016-03-25
Publish Date 2016-03-25
Rating 5.00/5 Total 4 Ratings
Developer clare o'neill
Email [email protected]
Payment Type free
Supported Languages en-US
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"
    }
}