Code Red

This extension will prompt you to donate to the Red Cross.

Что такое Code Red?

Code Red - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension will prompt you to donate to the Red Cross.".

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

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

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

                        This extension will prompt you to donate to the Red Cross when the page contains information about natural disasters or illness that require blood donation.                    

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

Название Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Официальный URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Описание This extension will prompt you to donate to the Red Cross.
Размер файла 75.56 KB
Количество установок 19
Текущая Версия 1.0
Последнее Обновление 2016-12-13
Дата публикации 2016-12-13
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Red",
    "description": "This extension will prompt you to donate to the Red Cross.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "droplet48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "http:\/\/www.redcrossblood.org\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "droplet16.png",
        "48": "droplet48.png",
        "128": "droplet128.png"
    }
}