Code Red

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

Cos'è Code Red?

Code Red è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will prompt you to donate to the Red Cross.".

Scarica il file CRX dell'estensione Code Red

Scarica i file di estensione Code Red in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
URL Ufficiale https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Descrizione This extension will prompt you to donate to the Red Cross.
Dimensione del File 75.56 KB
Conteggio Installazioni 19
Versione Corrente 1.0
Ultimo Aggiornamento 2016-12-13
Data di Pubblicazione 2016-12-13
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
    }
}