Donald to Darth

This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page

Что такое Donald to Darth?

Donald to Darth - это расширение Chrome, разработанное jessehmcdonald, и его основная функция - "This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page".

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

screenshot

Скачать файл CRX расширения Donald to Darth

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

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

                        Well after hearing about all these politics people are getting bored. It is time to spice things up a bit! The Chrome Extension Changes famous politicians names to Star Wars Characters!                    

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

Название Donald to Darth Donald to Darth
ID epmmoednmfpdmennmmcedihlcecffdde
Официальный URL https://chromewebstore.google.com/detail/donald-to-darth/epmmoednmfpdmennmmcedihlcecffdde
Описание This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page
Размер файла 7.88 KB
Количество установок 66
Текущая Версия 1.4
Последнее Обновление 2015-12-19
Дата публикации 2015-12-19
Рейтинг 4.00/5 Всего 4 оценок
Разработчик jessehmcdonald
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Donald to Darth",
    "description": "This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page",
    "version": "1.4",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}