Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Was ist Cool Kids?
Cool Kids ist eine Chrome-Erweiterung, die von clare o'neill entwickelt wurde, und ihr Hauptmerkmal ist "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".
Erweiterungsscreenshots
Cool Kids-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cool Kids-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ogfgpkaggjlmfbapfkaahaopodjeeael |
| Offizielle URL | https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael |
| Beschreibung | Add this to your browser and replace all instances of 'millenials' with 'cool kids'. |
| Dateigröße | 22.63 KB |
| Installationsanzahl | 53 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2016-03-25 |
| Veröffentlichungsdatum | 2016-03-25 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | clare o'neill |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |