Code Red

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

Co to jest Code Red?

Code Red to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension will prompt you to donate to the Red Cross.”.

Pobierz plik CRX rozszerzenia Code Red

Pobierz pliki rozszerzeń Code Red w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Oficjalny URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Opis This extension will prompt you to donate to the Red Cross.
Rozmiar pliku 75.56 KB
Liczba instalacji 19
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-12-13
Data Publikacji 2016-12-13
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    }
}