Cool Kids

Add this to your browser and replace all instances of 'millenials' with 'cool kids'.

Что такое Cool Kids?

Cool Kids - это расширение Chrome, разработанное clare o'neill, и его основная функция - "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Cool Kids

Скачайте файлы расширений Cool Kids в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Cool Kids Cool Kids
ID ogfgpkaggjlmfbapfkaahaopodjeeael
Официальный URL https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael
Описание Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Размер файла 22.63 KB
Количество установок 53
Текущая Версия 1.0
Последнее Обновление 2016-03-25
Дата публикации 2016-03-25
Рейтинг 5.00/5 Всего 4 оценок
Разработчик clare o'neill
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}