Code Red

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

Hvad er Code Red?

Code Red er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension will prompt you to donate to the Red Cross.".

Download Code Red-udvidelses-CRX-fil

Download Code Red-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Officiel URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Beskrivelse This extension will prompt you to donate to the Red Cross.
Filstørrelse 75.56 KB
Antal Installationer 19
Nuværende Version 1.0
Senest Opdateret 2016-12-13
Udgivelsesdato 2016-12-13
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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"
    }
}