Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Cos'è Cool Kids?
Cool Kids è un'estensione di Chrome sviluppata da clare o'neill, e la sua funzione principale è "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Cool Kids
Scarica i file di estensione Cool Kids in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Cool Kids |
ID | ogfgpkaggjlmfbapfkaahaopodjeeael |
URL Ufficiale | https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael |
Descrizione | Add this to your browser and replace all instances of 'millenials' with 'cool kids'. |
Dimensione del File | 22.63 KB |
Conteggio Installazioni | 53 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-03-25 |
Data di Pubblicazione | 2016-03-25 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | clare o'neill |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |