Cool Kids

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

Qu'est-ce que Cool Kids ?

Cool Kids est une extension Chrome développée par clare o'neill, et sa fonction principale est "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Cool Kids

Téléchargez les fichiers d'extension Cool Kids au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Cool Kids Cool Kids
ID ogfgpkaggjlmfbapfkaahaopodjeeael
URL Officiel https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael
Description Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Taille du Fichier 22.63 KB
Nombre d'Installations 53
Version Actuelle 1.0
Dernière Mise à Jour 2016-03-25
Date de Publication 2016-03-25
Évaluation 5.00/5 Total 4 Évaluations
Développeur clare o'neill
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}