Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Vad är Cool Kids?
Cool Kids är en Chrome-tillägg utvecklad av clare o'neill, och dess huvudfunktion är "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".
Tilläggsskärmbilder
Ladda ner Cool Kids-förlängningens CRX-fil
Ladda ner Cool Kids-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | ogfgpkaggjlmfbapfkaahaopodjeeael |
| Officiell webbadress | https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael |
| Beskrivning | Add this to your browser and replace all instances of 'millenials' with 'cool kids'. |
| Filstorlek | 22.63 KB |
| Antal Installationer | 53 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2016-03-25 |
| Publiceringsdatum | 2016-03-25 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | clare o'neill |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |