Donald Trump Is An Actual Circus Clown

Replaces all instances of the name 'Donald Trump' with the text 'A Circus Clown'.

Что такое Donald Trump Is An Actual Circus Clown?

Donald Trump Is An Actual Circus Clown - это расширение Chrome, разработанное satellytehye, и его основная функция - "Replaces all instances of the name 'Donald Trump' with the text 'A Circus Clown'.".

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

screenshot

Скачать файл CRX расширения Donald Trump Is An Actual Circus Clown

Скачайте файлы расширений Donald Trump Is An Actual Circus Clown в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        A simple javascript search-and-replace that swaps various permutations of the name "Donald Trump" with the text "A Circus Clown". Designed to hopefully eliminate some of the fatigue inherent to browsing the internet during these trying times.                    

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

Название Donald Trump Is An Actual Circus Clown Donald Trump Is An Actual Circus Clown
ID kohnonlalhadnjpmjcdebkdpbfmplmed
Официальный URL https://chromewebstore.google.com/detail/donald-trump-is-an-actual/kohnonlalhadnjpmjcdebkdpbfmplmed
Описание Replaces all instances of the name 'Donald Trump' with the text 'A Circus Clown'.
Размер файла 18.99 KB
Количество установок 50
Текущая Версия 0.1
Последнее Обновление 2015-12-08
Дата публикации 2015-12-08
Рейтинг 4.00/5 Всего 4 оценок
Разработчик satellytehye
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Donald Trump Is An Actual Circus Clown",
    "short_name": "Trump2Clown",
    "description": "Replaces all instances of the name 'Donald Trump' with the text 'A Circus Clown'.",
    "version": "0.1",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}