Cloud to Butt Redux

Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.

Что такое Cloud to Butt Redux?

Cloud to Butt Redux - это расширение Chrome, разработанное Techjar, и его основная функция - "Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.".

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

screenshot

Скачать файл CRX расширения Cloud to Butt Redux

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

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

                        Improvements to a previous version of this extension, namely it will no longer replace textarea contents. Old version here: https://github.com/hank/cloud-to-butt

My version: https://github.com/Techjar/cloud-to-butt                    

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

Название Cloud to Butt Redux Cloud to Butt Redux
ID mghonbmkhoeammefiikcjdjaikniefnk
Официальный URL https://chrome.google.com/webstore/detail/cloud-to-butt-redux/mghonbmkhoeammefiikcjdjaikniefnk
Описание Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.
Размер файла 40.75 KB
Количество установок 160
Текущая Версия 1.3.5
Последнее Обновление 2018-01-08
Дата публикации 2018-01-08
Рейтинг 4.14/5 Всего 7 оценок
Разработчик Techjar
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cloud to Butt Redux",
    "version": "1.3.5",
    "description": "Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/titlecapitalization.com\/*",
                "*:\/\/hangouts.google.com\/*",
                "*:\/\/docs.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/discordapp.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ]
}