Code Red

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

Wat is Code Red?

Code Red is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension will prompt you to donate to the Red Cross.".

Download het CRX-bestand van de extensie Code Red

Download Code Red-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Officiële URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Beschrijving This extension will prompt you to donate to the Red Cross.
Bestandsgrootte 75.56 KB
Aantal Installaties 19
Huidige Versie 1.0
Laatst Bijgewerkt 2016-12-13
Publicatiedatum 2016-12-13
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    }
}