Code Red

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

Was ist Code Red?

Code Red ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension will prompt you to donate to the Red Cross.".

Code Red-Erweiterungs-CRX-Datei herunterladen

Laden Sie Code Red-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Offizielle URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Beschreibung This extension will prompt you to donate to the Red Cross.
Dateigröße 75.56 KB
Installationsanzahl 19
Aktuelle Version 1.0
Letztes Update 2016-12-13
Veröffentlichungsdatum 2016-12-13
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
    }
}