Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Co to jest Cool Kids?
Cool Kids to rozszerzenie Chrome opracowane przez clare o'neill, a jego główną funkcją jest „Add this to your browser and replace all instances of 'millenials' with 'cool kids'.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cool Kids
Pobierz pliki rozszerzeń Cool Kids w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Cool Kids |
ID | ogfgpkaggjlmfbapfkaahaopodjeeael |
Oficjalny URL | https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael |
Opis | Add this to your browser and replace all instances of 'millenials' with 'cool kids'. |
Rozmiar pliku | 22.63 KB |
Liczba instalacji | 53 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-03-25 |
Data Publikacji | 2016-03-25 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | clare o'neill |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |