Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Hvad er Cool Kids?
Cool Kids er en Chrome-udvidelse udviklet af clare o'neill, og dens hovedfunktion er "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".
Udvidelsesskærmbilleder
Download Cool Kids-udvidelses-CRX-fil
Download Cool Kids-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ogfgpkaggjlmfbapfkaahaopodjeeael |
| Officiel URL | https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael |
| Beskrivelse | Add this to your browser and replace all instances of 'millenials' with 'cool kids'. |
| Filstørrelse | 22.63 KB |
| Antal Installationer | 53 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2016-03-25 |
| Udgivelsesdato | 2016-03-25 |
| Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
| Udvikler | clare o'neill |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |