Dump Trump

Naming Donald Trump for what he actually is.

Что такое Dump Trump?

Dump Trump - это расширение Chrome, разработанное Heather Akers-Healy, и его основная функция - "Naming Donald Trump for what he actually is.".

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

screenshot
screenshot

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

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

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

                        This hand-crafted, artisanal Chrome extension mocks Donald Trump by adding phrases to his name that reflect his character.                    

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

Название Dump Trump Dump Trump
ID cmigfbbmdkdjellndicbndnihppijaac
Официальный URL https://chromewebstore.google.com/detail/dump-trump/cmigfbbmdkdjellndicbndnihppijaac
Описание Naming Donald Trump for what he actually is.
Размер файла 48.63 KB
Количество установок 16
Текущая Версия 0.1.3
Последнее Обновление 2017-01-22
Дата публикации 2017-01-22
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Heather Akers-Healy
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dump Trump",
    "version": "0.1.3",
    "description": "Naming Donald Trump for what he actually is.",
    "author": "Heather Akers-Healy",
    "browser_action": {
        "default_title": "Use this to open the popup",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}